pub struct IssuingToken {
pub card: Expandable<IssuingCard>,
pub created: Timestamp,
pub device_fingerprint: Option<String>,
pub id: IssuingTokenId,
pub last4: Option<String>,
pub livemode: bool,
pub network: IssuingTokenNetwork,
pub network_data: Option<IssuingNetworkTokenNetworkData>,
pub network_updated_at: Timestamp,
pub status: IssuingTokenStatus,
pub wallet_provider: Option<IssuingTokenWalletProvider>,
}
Expand description
An issuing token object is created when an issued card is added to a digital wallet. As a card issuer, you can view and manage these tokens through Stripe.
For more details see <https://stripe.com/docs/api/issuing/tokens/object>.
Fields§
§card: Expandable<IssuingCard>
Card associated with this token.
created: Timestamp
Time at which the object was created. Measured in seconds since the Unix epoch.
device_fingerprint: Option<String>
The hashed ID derived from the device ID from the card network associated with the token.
id: IssuingTokenId
Unique identifier for the object.
last4: Option<String>
The last four digits of the token.
livemode: bool
Has the value true
if the object exists in live mode or the value false
if the object exists in test mode.
network: IssuingTokenNetwork
The token service provider / card network associated with the token.
network_data: Option<IssuingNetworkTokenNetworkData>
§network_updated_at: Timestamp
Time at which the token was last updated by the card network. Measured in seconds since the Unix epoch.
status: IssuingTokenStatus
The usage state of the token.
wallet_provider: Option<IssuingTokenWalletProvider>
The digital wallet for this token, if one was used.
Trait Implementations§
Source§impl Clone for IssuingToken
impl Clone for IssuingToken
Source§fn clone(&self) -> IssuingToken
fn clone(&self) -> IssuingToken
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more