[][src]Struct paypal::CreditCardToken

pub struct CreditCardToken {
    pub credit_card_id: String,
    pub payer_id: Option<String>,
    pub last4: Option<String>,
    pub _type: Option<String>,
    pub expire_month: Option<i32>,
    pub expire_year: Option<i32>,
}

A credit card in token representation.

Fields

credit_card_id: String

The ID of credit card that is stored in the PayPal vault.

payer_id: Option<String>

A unique ID that you can assign and track when you store a credit card in the vault or use a vaulted credit card. This ID can help to avoid unintentional use or misuse of credit cards and can be any value, such as a UUID, user name, or email address. Required when you use a vaulted credit card and if a payer_id was originally provided when you vaulted the credit card.

last4: Option<String>

The last four digits of the stored credit card number.

_type: Option<String>

The credit card type. Value is visa, mastercard, discover, or amex. Do not use these lowercase values for display.

expire_month: Option<i32>

The expiration month with no leading zero. Value is from 1 to 12.

expire_year: Option<i32>

The four-digit expiration year.

Trait Implementations

impl Debug for CreditCardToken[src]

impl Serialize for CreditCardToken[src]

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

Auto Trait Implementations

Blanket Implementations

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