pub struct PaymentMethodDetailsCardInstallmentsPlan {
pub count: Option<u64>,
pub interval: Option<PaymentMethodDetailsCardInstallmentsPlanInterval>,
pub type_: PaymentMethodDetailsCardInstallmentsPlanType,
}
Fields§
§count: Option<u64>
For fixed_count
installment plans, this is the number of installment payments your customer will make to their credit card.
interval: Option<PaymentMethodDetailsCardInstallmentsPlanInterval>
For fixed_count
installment plans, this is the interval between installment payments your customer will make to their credit card.
One of month
.
type_: PaymentMethodDetailsCardInstallmentsPlanType
Type of installment plan, one of fixed_count
.
Trait Implementations§
Source§impl Clone for PaymentMethodDetailsCardInstallmentsPlan
impl Clone for PaymentMethodDetailsCardInstallmentsPlan
Source§fn clone(&self) -> PaymentMethodDetailsCardInstallmentsPlan
fn clone(&self) -> PaymentMethodDetailsCardInstallmentsPlan
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 PaymentMethodDetailsCardInstallmentsPlan
impl FromValueOpt for PaymentMethodDetailsCardInstallmentsPlan
fn from_value(v: Value) -> Option<Self>
impl Copy for PaymentMethodDetailsCardInstallmentsPlan
Auto Trait Implementations§
impl Freeze for PaymentMethodDetailsCardInstallmentsPlan
impl RefUnwindSafe for PaymentMethodDetailsCardInstallmentsPlan
impl Send for PaymentMethodDetailsCardInstallmentsPlan
impl Sync for PaymentMethodDetailsCardInstallmentsPlan
impl Unpin for PaymentMethodDetailsCardInstallmentsPlan
impl UnwindSafe for PaymentMethodDetailsCardInstallmentsPlan
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