pub struct PaymentMethodOptionsCustomerBalanceBankTransfer {
pub eu_bank_transfer: Option<PaymentMethodOptionsCustomerBalanceEuBankAccount>,
pub requested_address_types: Option<Vec<PaymentMethodOptionsCustomerBalanceBankTransferRequestedAddressTypes>>,
pub type_: Option<PaymentMethodOptionsCustomerBalanceBankTransferType>,
}Fields§
§eu_bank_transfer: Option<PaymentMethodOptionsCustomerBalanceEuBankAccount>§requested_address_types: Option<Vec<PaymentMethodOptionsCustomerBalanceBankTransferRequestedAddressTypes>>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<PaymentMethodOptionsCustomerBalanceBankTransferType>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 PaymentMethodOptionsCustomerBalanceBankTransfer
impl Clone for PaymentMethodOptionsCustomerBalanceBankTransfer
Source§fn clone(&self) -> PaymentMethodOptionsCustomerBalanceBankTransfer
fn clone(&self) -> PaymentMethodOptionsCustomerBalanceBankTransfer
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PaymentMethodOptionsCustomerBalanceBankTransfer
impl FromValueOpt for PaymentMethodOptionsCustomerBalanceBankTransfer
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for PaymentMethodOptionsCustomerBalanceBankTransfer
impl PartialEq for PaymentMethodOptionsCustomerBalanceBankTransfer
Source§fn eq(&self, other: &PaymentMethodOptionsCustomerBalanceBankTransfer) -> bool
fn eq(&self, other: &PaymentMethodOptionsCustomerBalanceBankTransfer) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PaymentMethodOptionsCustomerBalanceBankTransfer
impl StructuralPartialEq for PaymentMethodOptionsCustomerBalanceBankTransfer
Auto Trait Implementations§
impl Freeze for PaymentMethodOptionsCustomerBalanceBankTransfer
impl RefUnwindSafe for PaymentMethodOptionsCustomerBalanceBankTransfer
impl Send for PaymentMethodOptionsCustomerBalanceBankTransfer
impl Sync for PaymentMethodOptionsCustomerBalanceBankTransfer
impl Unpin for PaymentMethodOptionsCustomerBalanceBankTransfer
impl UnsafeUnpin for PaymentMethodOptionsCustomerBalanceBankTransfer
impl UnwindSafe for PaymentMethodOptionsCustomerBalanceBankTransfer
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