pub struct InvoicePaymentMethodOptionsCustomerBalanceBankTransfer {
pub eu_bank_transfer: Option<InvoicePaymentMethodOptionsCustomerBalanceBankTransferEuBankTransfer>,
pub type_: Option<String>,
}Available on crate feature
billing only.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 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
impl Default for InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
Source§fn default() -> InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
fn default() -> InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
impl<'de> Deserialize<'de> for InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
impl RefUnwindSafe for InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
impl Send for InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
impl Sync for InvoicePaymentMethodOptionsCustomerBalanceBankTransfer
impl Unpin 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