pub struct AccountLink {
pub created: Timestamp,
pub expires_at: Timestamp,
pub url: String,
}
Expand description
Account Links are the means by which a Connect platform grants a connected account permission to access. Stripe-hosted applications, such as Connect Onboarding.
Related guide: Connect Onboarding
For more details see <https://stripe.com/docs/api/account_links/object>.
Fields§
§created: Timestamp
Time at which the object was created. Measured in seconds since the Unix epoch.
expires_at: Timestamp
The timestamp at which this account link will expire.
url: String
The URL for the account link.
Trait Implementations§
Source§impl Clone for AccountLink
impl Clone for AccountLink
Source§fn clone(&self) -> AccountLink
fn clone(&self) -> AccountLink
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AccountLink
impl Debug for AccountLink
Source§impl Deserialize for AccountLink
impl Deserialize for AccountLink
Source§impl FromValueOpt for AccountLink
impl FromValueOpt for AccountLink
fn from_value(v: Value) -> Option<Self>
Source§impl ObjectDeser for AccountLink
impl ObjectDeser for AccountLink
Auto Trait Implementations§
impl Freeze for AccountLink
impl RefUnwindSafe for AccountLink
impl Send for AccountLink
impl Sync for AccountLink
impl Unpin for AccountLink
impl UnwindSafe for AccountLink
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more