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: i64The 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 (const: unstable) · 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>
Source§impl PartialEq for InvoiceItemThresholdReason
impl PartialEq for InvoiceItemThresholdReason
Source§fn eq(&self, other: &InvoiceItemThresholdReason) -> bool
fn eq(&self, other: &InvoiceItemThresholdReason) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for InvoiceItemThresholdReason
impl StructuralPartialEq for InvoiceItemThresholdReason
Auto Trait Implementations§
impl Freeze for InvoiceItemThresholdReason
impl RefUnwindSafe for InvoiceItemThresholdReason
impl Send for InvoiceItemThresholdReason
impl Sync for InvoiceItemThresholdReason
impl Unpin for InvoiceItemThresholdReason
impl UnsafeUnpin 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