pub struct CheckoutCustomerBalanceBankTransferPaymentMethodOptions {
pub eu_bank_transfer: Option<PaymentMethodOptionsCustomerBalanceEuBankAccount>,
pub requested_address_types: Option<Vec<CheckoutCustomerBalanceBankTransferPaymentMethodOptionsRequestedAddressTypes>>,
pub type_: Option<CheckoutCustomerBalanceBankTransferPaymentMethodOptionsType>,
}
Fields§
§eu_bank_transfer: Option<PaymentMethodOptionsCustomerBalanceEuBankAccount>
§requested_address_types: Option<Vec<CheckoutCustomerBalanceBankTransferPaymentMethodOptionsRequestedAddressTypes>>
List of address types that should be returned in the financial_addresses response. If not specified, all valid types will be returned.
Permitted values include: sort_code
, zengin
, iban
, or spei
.
type_: Option<CheckoutCustomerBalanceBankTransferPaymentMethodOptionsType>
The bank transfer type that this PaymentIntent is allowed to use for funding Permitted values include: eu_bank_transfer
, gb_bank_transfer
, jp_bank_transfer
, mx_bank_transfer
, or us_bank_transfer
.
Trait Implementations§
Source§impl Clone for CheckoutCustomerBalanceBankTransferPaymentMethodOptions
impl Clone for CheckoutCustomerBalanceBankTransferPaymentMethodOptions
Source§fn clone(&self) -> CheckoutCustomerBalanceBankTransferPaymentMethodOptions
fn clone(&self) -> CheckoutCustomerBalanceBankTransferPaymentMethodOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl FromValueOpt for CheckoutCustomerBalanceBankTransferPaymentMethodOptions
impl FromValueOpt for CheckoutCustomerBalanceBankTransferPaymentMethodOptions
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for CheckoutCustomerBalanceBankTransferPaymentMethodOptions
impl RefUnwindSafe for CheckoutCustomerBalanceBankTransferPaymentMethodOptions
impl Send for CheckoutCustomerBalanceBankTransferPaymentMethodOptions
impl Sync for CheckoutCustomerBalanceBankTransferPaymentMethodOptions
impl Unpin for CheckoutCustomerBalanceBankTransferPaymentMethodOptions
impl UnwindSafe for CheckoutCustomerBalanceBankTransferPaymentMethodOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more