pub struct PaymentIntentNextActionDisplayBankTransferInstructions {
    pub amount_remaining: Option<i64>,
    pub currency: Option<Currency>,
    pub financial_addresses: Option<Vec<FundingInstructionsBankTransferFinancialAddress>>,
    pub hosted_instructions_url: Option<String>,
    pub reference: Option<String>,
    pub type_: PaymentIntentNextActionDisplayBankTransferInstructionsType,
}

Fields

amount_remaining: Option<i64>

The remaining amount that needs to be transferred to complete the payment.

currency: Option<Currency>

Three-letter ISO currency code, in lowercase.

Must be a supported currency.

financial_addresses: Option<Vec<FundingInstructionsBankTransferFinancialAddress>>

A list of financial addresses that can be used to fund the customer balance.

hosted_instructions_url: Option<String>

A link to a hosted page that guides your customer through completing the transfer.

reference: Option<String>

A string identifying this payment.

Instruct your customer to include this code in the reference or memo field of their bank transfer.

type_: PaymentIntentNextActionDisplayBankTransferInstructionsType

Type of bank transfer.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more