pub struct Bill {Show 15 fields
pub sync_token: String,
pub domain: String,
pub id: String,
pub ap_account_ref: NtRef,
pub vendor_ref: NtRef,
pub txn_date: NaiveDate,
pub total_amt: f64,
pub currency_ref: NtRef,
pub linked_txn: Vec<LinkedTxn>,
pub sales_term_ref: NtRef,
pub due_date: NaiveDate,
pub sparse: bool,
pub line: Vec<Line>,
pub balance: i64,
pub meta_data: MetaData,
}Fields§
§sync_token: String§domain: String§id: String§ap_account_ref: NtRef§vendor_ref: NtRef§txn_date: NaiveDate§total_amt: f64§currency_ref: NtRef§linked_txn: Vec<LinkedTxn>§sales_term_ref: NtRef§due_date: NaiveDate§sparse: bool§line: Vec<Line>§balance: i64§meta_data: MetaDataTrait Implementations§
Source§impl<'de> Deserialize<'de> for Bill
impl<'de> Deserialize<'de> for Bill
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 JsonSchema for Bill
impl JsonSchema for Bill
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for Bill
impl RefUnwindSafe for Bill
impl Send for Bill
impl Sync for Bill
impl Unpin for Bill
impl UnwindSafe for Bill
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