pub struct CreateCheckoutSessionPaymentMethodOptionsCustomerBalanceBankTransfer {
pub eu_bank_transfer: Option<CreateCheckoutSessionPaymentMethodOptionsCustomerBalanceBankTransferEuBankTransfer>,
pub requested_address_types: Option<Vec<CreateCheckoutSessionPaymentMethodOptionsCustomerBalanceBankTransferRequestedAddressTypes>>,
pub type_: CreateCheckoutSessionPaymentMethodOptionsCustomerBalanceBankTransferType,
}Expand description
Configuration for the bank transfer funding type, if the funding_type is set to bank_transfer.
Fields§
§eu_bank_transfer: Option<CreateCheckoutSessionPaymentMethodOptionsCustomerBalanceBankTransferEuBankTransfer>Configuration for eu_bank_transfer funding type.
requested_address_types: Option<Vec<CreateCheckoutSessionPaymentMethodOptionsCustomerBalanceBankTransferRequestedAddressTypes>>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_: CreateCheckoutSessionPaymentMethodOptionsCustomerBalanceBankTransferTypeThe list of bank transfer types that this PaymentIntent is allowed to use for funding.
Implementations§
Trait Implementations§
Source§impl Clone for CreateCheckoutSessionPaymentMethodOptionsCustomerBalanceBankTransfer
impl Clone for CreateCheckoutSessionPaymentMethodOptionsCustomerBalanceBankTransfer
Source§fn clone(
&self,
) -> CreateCheckoutSessionPaymentMethodOptionsCustomerBalanceBankTransfer
fn clone( &self, ) -> CreateCheckoutSessionPaymentMethodOptionsCustomerBalanceBankTransfer
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 moreimpl Eq for CreateCheckoutSessionPaymentMethodOptionsCustomerBalanceBankTransfer
impl StructuralPartialEq for CreateCheckoutSessionPaymentMethodOptionsCustomerBalanceBankTransfer
Auto Trait Implementations§
impl Freeze for CreateCheckoutSessionPaymentMethodOptionsCustomerBalanceBankTransfer
impl RefUnwindSafe for CreateCheckoutSessionPaymentMethodOptionsCustomerBalanceBankTransfer
impl Send for CreateCheckoutSessionPaymentMethodOptionsCustomerBalanceBankTransfer
impl Sync for CreateCheckoutSessionPaymentMethodOptionsCustomerBalanceBankTransfer
impl Unpin for CreateCheckoutSessionPaymentMethodOptionsCustomerBalanceBankTransfer
impl UnsafeUnpin for CreateCheckoutSessionPaymentMethodOptionsCustomerBalanceBankTransfer
impl UnwindSafe for CreateCheckoutSessionPaymentMethodOptionsCustomerBalanceBankTransfer
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