pub struct InvoicePaymentMethodOptionsParam {
pub bank_transfer: Option<BankTransferParam>,
pub funding_type: Option<String>,
}
Fields§
§bank_transfer: Option<BankTransferParam>
Configuration for the bank transfer funding type, if the funding_type
is set to bank_transfer
.
funding_type: Option<String>
The funding method type to be used when there are not enough funds in the customer balance.
Permitted values include: bank_transfer
.
Implementations§
Trait Implementations§
Source§impl Clone for InvoicePaymentMethodOptionsParam
impl Clone for InvoicePaymentMethodOptionsParam
Source§fn clone(&self) -> InvoicePaymentMethodOptionsParam
fn clone(&self) -> InvoicePaymentMethodOptionsParam
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 moreAuto Trait Implementations§
impl Freeze for InvoicePaymentMethodOptionsParam
impl RefUnwindSafe for InvoicePaymentMethodOptionsParam
impl Send for InvoicePaymentMethodOptionsParam
impl Sync for InvoicePaymentMethodOptionsParam
impl Unpin for InvoicePaymentMethodOptionsParam
impl UnwindSafe for InvoicePaymentMethodOptionsParam
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