pub struct QuotesResourceComputed {
pub recurring: Option<QuotesResourceRecurring>,
pub upfront: QuotesResourceUpfront,
}
Fields§
§recurring: Option<QuotesResourceRecurring>
The definitive totals and line items the customer will be charged on a recurring basis.
Takes into account the line items with recurring prices and discounts with duration=forever
coupons only.
Defaults to null
if no inputted line items with recurring prices.
upfront: QuotesResourceUpfront
Trait Implementations§
Source§impl Clone for QuotesResourceComputed
impl Clone for QuotesResourceComputed
Source§fn clone(&self) -> QuotesResourceComputed
fn clone(&self) -> QuotesResourceComputed
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 QuotesResourceComputed
impl Debug for QuotesResourceComputed
Source§impl Deserialize for QuotesResourceComputed
impl Deserialize for QuotesResourceComputed
Source§impl FromValueOpt for QuotesResourceComputed
impl FromValueOpt for QuotesResourceComputed
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for QuotesResourceComputed
impl RefUnwindSafe for QuotesResourceComputed
impl Send for QuotesResourceComputed
impl Sync for QuotesResourceComputed
impl Unpin for QuotesResourceComputed
impl UnwindSafe for QuotesResourceComputed
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