[−][src]Struct stripe::Token
The resource representing a Stripe "Token".
For more details see https://stripe.com/docs/api/tokens/object.
Fields
id: TokenIdUnique identifier for the object.
bank_account: Option<BankAccount>card: Option<Card>client_ip: Option<String>IP address of the client that generated the token.
created: TimestampTime at which the object was created.
Measured in seconds since the Unix epoch.
livemode: boolHas the value true if the object exists in live mode or the value false if the object exists in test mode.
type_: TokenTypeType of the token: account, bank_account, card, or pii.
used: boolWhether this token has already been used (tokens can be used only once).
Implementations
impl Token[src]
pub fn create(client: &Client, params: CreateToken) -> Response<Token>[src]
Creates a single-use token that represents a bank account’s details. This token can be used with any API method in place of a bank account dictionary.
This token can be used only once, by attaching it to a Custom account.
pub fn retrieve(
client: &Client,
id: &TokenId,
expand: &[&str]
) -> Response<Token>[src]
client: &Client,
id: &TokenId,
expand: &[&str]
) -> Response<Token>
Retrieves the token with the given ID.
Trait Implementations
impl Clone for Token[src]
impl Debug for Token[src]
impl<'de> Deserialize<'de> for Token[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Object for Token[src]
type Id = TokenId
The canonical id type for this object.
fn id(&self) -> Self::Id[src]
fn object(&self) -> &'static str[src]
impl Serialize for Token[src]
Auto Trait Implementations
impl RefUnwindSafe for Token
impl Send for Token
impl Sync for Token
impl Unpin for Token
impl UnwindSafe for Token
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,