pub struct IssuingToken {
pub card: Value,
pub created: i64,
pub device_fingerprint: Option<String>,
pub id: String,
pub last4: Option<String>,
pub livemode: bool,
pub network: String,
pub network_data: Option<IssuingNetworkTokenNetworkData>,
pub network_updated_at: i64,
pub object: String,
pub status: String,
pub wallet_provider: Option<String>,
}
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.
Fields§
§card: Value
Card associated with this token.
created: i64
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: String
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: String
The token service provider / card network associated with the token.
network_data: Option<IssuingNetworkTokenNetworkData>
§network_updated_at: i64
Time at which the token was last updated by the card network. Measured in seconds since the Unix epoch.
object: String
String representing the object’s type. Objects of the same type share the same value.
status: String
The usage state of the token.
wallet_provider: Option<String>
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