Account Token
Account tokens are single-use tokens which tokenize an account's contact_email, display_name, contact_phone, and identity.
Summary
Types
@type t() :: %Stripe.Resources.V2.Core.AccountToken{ created: term(), expires_at: term(), id: term(), livemode: term(), object: term(), used: term() }
created- Time at which the token was created. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z. Format: date-time.expires_at- Time at which the token will expire. Format: date-time.id- Unique identifier for the token.livemode- Has the valuetrueif the token exists in live mode or the valuefalseif the object exists in test mode.object- String representing the object's type. Objects of the same type share the same value of the object field. Possible values:v2.core.account_token.used- Determines if the token has already been used (tokens can only be used once).