[][src]Struct stripe::Token

pub struct Token {
    pub id: TokenId,
    pub bank_account: Option<BankAccount>,
    pub card: Option<Card>,
    pub client_ip: Option<String>,
    pub created: Timestamp,
    pub livemode: bool,
    pub type_: TokenType,
    pub used: bool,
}

The resource representing a Stripe "Token".

For more details see https://stripe.com/docs/api/tokens/object.

Fields

id: TokenId

Unique 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: Timestamp

Time at which the object was created.

Measured in seconds since the Unix epoch.

livemode: bool

Has the value true if the object exists in live mode or the value false if the object exists in test mode.

type_: TokenType

Type of the token: account, bank_account, card, or pii.

used: bool

Whether this token has already been used (tokens can be used only once).

Methods

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]

Retrieves the token with the given ID.

Trait Implementations

impl Object for Token[src]

type Id = TokenId

The canonical id type for this object.

impl Clone for Token[src]

impl Debug for Token[src]

impl Serialize for Token[src]

impl<'de> Deserialize<'de> for Token[src]

Auto Trait Implementations

impl Unpin for Token

impl Sync for Token

impl Send for Token

impl UnwindSafe for Token

impl RefUnwindSafe for Token

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err

impl<T> Same<T> for T

type Output = T

Should always be Self