[][src]Enum stripe_api::resources::paymentmethods::paymentmethods::PaymentMethodsDetailsInner

pub enum PaymentMethodsDetailsInner {
    AchCreditTransfer {
        account_number: String,
        bank_name: String,
        routing_number: String,
        swift_code: String,
    },
    AchDebit {
        account_holder_type: AccountHolderType,
        bank_name: String,
        country: String,
        fingerprint: String,
        last4: String,
        routing_number: String,
    },
    AliPay,
    BanContact {
        bank_code: String,
        bank_name: String,
        bic: String,
        iban_last4: String,
        preferred_language: String,
        verified_name: String,
    },
    Card {
        brand: String,
        checks: ChargeChecks,
        country: String,
        exp_month: i32,
        exp_year: i32,
        fingerprint: String,
        funding: CardType,
        last4: String,
        three_d_secure: Option<String>,
        wallet: Option<String>,
    },
}

Variants

AchCreditTransfer

Fields of AchCreditTransfer

account_number: Stringbank_name: Stringrouting_number: Stringswift_code: String
AchDebit

Fields of AchDebit

account_holder_type: AccountHolderTypebank_name: Stringcountry: Stringfingerprint: Stringlast4: Stringrouting_number: String
AliPayBanContact

Fields of BanContact

bank_code: Stringbank_name: Stringbic: Stringiban_last4: Stringpreferred_language: Stringverified_name: String
Card

Fields of Card

brand: Stringchecks: ChargeCheckscountry: Stringexp_month: i32exp_year: i32fingerprint: Stringfunding: CardTypelast4: Stringthree_d_secure: Option<String>wallet: Option<String>

Trait Implementations

impl PartialEq<PaymentMethodsDetailsInner> for PaymentMethodsDetailsInner[src]

impl Debug for PaymentMethodsDetailsInner[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> Erased for T

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

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