pub struct MeteredBillingReconciliationRow {Show 26 fields
pub receipt_id: String,
pub timestamp: u64,
pub capability_id: String,
pub subject_key: Option<String>,
pub tool_server: String,
pub tool_name: String,
pub settlement_mode: MeteredSettlementMode,
pub provider: String,
pub quote_id: String,
pub billing_unit: String,
pub quoted_units: u64,
pub quoted_cost: MonetaryAmount,
pub max_billed_units: Option<u64>,
pub financial_cost_charged: Option<u64>,
pub financial_currency: Option<String>,
pub budget_authority: Option<FinancialBudgetAuthorityReceiptMetadata>,
pub evidence: Option<MeteredBillingEvidenceRecord>,
pub reconciliation_state: MeteredBillingReconciliationState,
pub action_required: bool,
pub evidence_missing: bool,
pub exceeds_quoted_units: bool,
pub exceeds_max_billed_units: bool,
pub exceeds_quoted_cost: bool,
pub financial_mismatch: bool,
pub note: Option<String>,
pub updated_at: Option<u64>,
}Fields§
§receipt_id: String§timestamp: u64§capability_id: String§subject_key: Option<String>§tool_server: String§tool_name: String§settlement_mode: MeteredSettlementMode§provider: String§quote_id: String§billing_unit: String§quoted_units: u64§quoted_cost: MonetaryAmount§max_billed_units: Option<u64>§financial_cost_charged: Option<u64>§financial_currency: Option<String>§evidence: Option<MeteredBillingEvidenceRecord>§reconciliation_state: MeteredBillingReconciliationState§action_required: bool§evidence_missing: bool§exceeds_quoted_units: bool§exceeds_max_billed_units: bool§exceeds_quoted_cost: bool§financial_mismatch: bool§note: Option<String>§updated_at: Option<u64>Trait Implementations§
Source§impl Clone for MeteredBillingReconciliationRow
impl Clone for MeteredBillingReconciliationRow
Source§fn clone(&self) -> MeteredBillingReconciliationRow
fn clone(&self) -> MeteredBillingReconciliationRow
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<'de> Deserialize<'de> for MeteredBillingReconciliationRow
impl<'de> Deserialize<'de> for MeteredBillingReconciliationRow
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MeteredBillingReconciliationRow
impl PartialEq for MeteredBillingReconciliationRow
Source§fn eq(&self, other: &MeteredBillingReconciliationRow) -> bool
fn eq(&self, other: &MeteredBillingReconciliationRow) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for MeteredBillingReconciliationRow
impl StructuralPartialEq for MeteredBillingReconciliationRow
Auto Trait Implementations§
impl Freeze for MeteredBillingReconciliationRow
impl RefUnwindSafe for MeteredBillingReconciliationRow
impl Send for MeteredBillingReconciliationRow
impl Sync for MeteredBillingReconciliationRow
impl Unpin for MeteredBillingReconciliationRow
impl UnsafeUnpin for MeteredBillingReconciliationRow
impl UnwindSafe for MeteredBillingReconciliationRow
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.