pub struct InvoicePaymentMethodOptionsCustomerBalanceBankTransfer {
pub eu_bank_transfer: Option<InvoicePaymentMethodOptionsCustomerBalanceBankTransferEuBankTransfer>,
pub type_: Option<String>,
}Fields§
§eu_bank_transfer: Option<InvoicePaymentMethodOptionsCustomerBalanceBankTransferEuBankTransfer>§type_: Option<String>The bank transfer type that can be used 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 InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
impl Clone for InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
Source§fn clone(&self) -> InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
fn clone(&self) -> InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
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 InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
impl FromValueOpt for InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
impl PartialEq for InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
Source§fn eq(
&self,
other: &InvoicePaymentMethodOptionsCustomerBalanceBankTransfer,
) -> bool
fn eq( &self, other: &InvoicePaymentMethodOptionsCustomerBalanceBankTransfer, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
impl StructuralPartialEq for InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
Auto Trait Implementations§
impl Freeze for InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
impl RefUnwindSafe for InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
impl Send for InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
impl Sync for InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
impl Unpin for InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
impl UnsafeUnpin for InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
impl UnwindSafe for InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
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