pub struct QuotesResourceRecurring {
pub amount_subtotal: i64,
pub amount_total: i64,
pub interval: QuotesResourceRecurringInterval,
pub interval_count: u64,
pub total_details: QuotesResourceTotalDetails,
}
Fields§
§amount_subtotal: i64
Total before any discounts or taxes are applied.
amount_total: i64
Total after discounts and taxes are applied.
interval: QuotesResourceRecurringInterval
The frequency at which a subscription is billed. One of day
, week
, month
or year
.
interval_count: u64
The number of intervals (specified in the interval
attribute) between subscription billings.
For example, interval=month
and interval_count=3
bills every 3 months.
total_details: QuotesResourceTotalDetails
Trait Implementations§
Source§impl Clone for QuotesResourceRecurring
impl Clone for QuotesResourceRecurring
Source§fn clone(&self) -> QuotesResourceRecurring
fn clone(&self) -> QuotesResourceRecurring
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 Debug for QuotesResourceRecurring
impl Debug for QuotesResourceRecurring
Source§impl FromValueOpt for QuotesResourceRecurring
impl FromValueOpt for QuotesResourceRecurring
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for QuotesResourceRecurring
impl RefUnwindSafe for QuotesResourceRecurring
impl Send for QuotesResourceRecurring
impl Sync for QuotesResourceRecurring
impl Unpin for QuotesResourceRecurring
impl UnwindSafe for QuotesResourceRecurring
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