pub struct InvoicePaymentMethodOptionsCustomerBalance {
pub bank_transfer: Option<InvoicePaymentMethodOptionsCustomerBalanceBankTransfer>,
pub funding_type: Option<InvoicePaymentMethodOptionsCustomerBalanceFundingType>,
}
Fields§
§bank_transfer: Option<InvoicePaymentMethodOptionsCustomerBalanceBankTransfer>
§funding_type: Option<InvoicePaymentMethodOptionsCustomerBalanceFundingType>
The funding method type to be used when there are not enough funds in the customer balance.
Permitted values include: bank_transfer
.
Trait Implementations§
Source§impl Clone for InvoicePaymentMethodOptionsCustomerBalance
impl Clone for InvoicePaymentMethodOptionsCustomerBalance
Source§fn clone(&self) -> InvoicePaymentMethodOptionsCustomerBalance
fn clone(&self) -> InvoicePaymentMethodOptionsCustomerBalance
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 InvoicePaymentMethodOptionsCustomerBalance
impl FromValueOpt for InvoicePaymentMethodOptionsCustomerBalance
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for InvoicePaymentMethodOptionsCustomerBalance
impl RefUnwindSafe for InvoicePaymentMethodOptionsCustomerBalance
impl Send for InvoicePaymentMethodOptionsCustomerBalance
impl Sync for InvoicePaymentMethodOptionsCustomerBalance
impl Unpin for InvoicePaymentMethodOptionsCustomerBalance
impl UnwindSafe for InvoicePaymentMethodOptionsCustomerBalance
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