pub struct InvoiceItemThresholdReason {
pub line_item_ids: Vec<String>,
pub usage_gte: i64,
}
Fields§
§line_item_ids: Vec<String>
The IDs of the line items that triggered the threshold invoice.
usage_gte: i64
The quantity threshold boundary that applied to the given line item.
Trait Implementations§
Source§impl Clone for InvoiceItemThresholdReason
impl Clone for InvoiceItemThresholdReason
Source§fn clone(&self) -> InvoiceItemThresholdReason
fn clone(&self) -> InvoiceItemThresholdReason
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 InvoiceItemThresholdReason
impl Debug for InvoiceItemThresholdReason
Source§impl FromValueOpt for InvoiceItemThresholdReason
impl FromValueOpt for InvoiceItemThresholdReason
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for InvoiceItemThresholdReason
impl RefUnwindSafe for InvoiceItemThresholdReason
impl Send for InvoiceItemThresholdReason
impl Sync for InvoiceItemThresholdReason
impl Unpin for InvoiceItemThresholdReason
impl UnwindSafe for InvoiceItemThresholdReason
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