pub struct AccountLink {
pub created: i64,
pub expires_at: i64,
pub object: String,
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
Fields§
§created: i64
Time at which the object was created. Measured in seconds since the Unix epoch.
expires_at: i64
The timestamp at which this account link will expire.
object: String
String representing the object’s type. Objects of the same type share the same value.
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 Default for AccountLink
impl Default for AccountLink
Source§fn default() -> AccountLink
fn default() -> AccountLink
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountLink
impl<'de> Deserialize<'de> for AccountLink
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for AccountLink
impl Display 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