pub struct SubscriptionPendingInvoiceItemInterval {
pub interval: SubscriptionPendingInvoiceItemIntervalInterval,
pub interval_count: u64,
}Fields§
§interval: SubscriptionPendingInvoiceItemIntervalIntervalSpecifies invoicing frequency. Either day, week, month or year.
interval_count: u64The number of intervals between invoices.
For example, interval=month and interval_count=3 bills every 3 months.
Maximum of one year interval allowed (1 year, 12 months, or 52 weeks).
Trait Implementations§
Source§impl Clone for SubscriptionPendingInvoiceItemInterval
impl Clone for SubscriptionPendingInvoiceItemInterval
Source§fn clone(&self) -> SubscriptionPendingInvoiceItemInterval
fn clone(&self) -> SubscriptionPendingInvoiceItemInterval
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 SubscriptionPendingInvoiceItemInterval
impl FromValueOpt for SubscriptionPendingInvoiceItemInterval
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for SubscriptionPendingInvoiceItemInterval
impl RefUnwindSafe for SubscriptionPendingInvoiceItemInterval
impl Send for SubscriptionPendingInvoiceItemInterval
impl Sync for SubscriptionPendingInvoiceItemInterval
impl Unpin for SubscriptionPendingInvoiceItemInterval
impl UnwindSafe for SubscriptionPendingInvoiceItemInterval
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