pub struct OrderFeeLineProperties {
pub id: i32,
pub name: String,
pub tax_class: String,
pub tax_status: TaxStatus,
pub total: String,
pub total_tax: String,
pub taxes: Vec<OrderTax>,
pub meta_data: Vec<MetaData>,
}
Fields§
§id: i32
Item ID.
name: String
Fee name.
tax_class: String
Tax class of fee.
tax_status: TaxStatus
Tax status of fee. Options: taxable and none.
total: String
Line total (after discounts).
total_tax: String
Line total tax (after discounts).
taxes: Vec<OrderTax>
Line taxes.
meta_data: Vec<MetaData>
Meta data.
Trait Implementations§
Source§impl Clone for OrderFeeLineProperties
impl Clone for OrderFeeLineProperties
Source§fn clone(&self) -> OrderFeeLineProperties
fn clone(&self) -> OrderFeeLineProperties
Returns a copy 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 OrderFeeLineProperties
impl Debug for OrderFeeLineProperties
Source§impl<'de> Deserialize<'de> for OrderFeeLineProperties
impl<'de> Deserialize<'de> for OrderFeeLineProperties
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
Auto Trait Implementations§
impl Freeze for OrderFeeLineProperties
impl RefUnwindSafe for OrderFeeLineProperties
impl Send for OrderFeeLineProperties
impl Sync for OrderFeeLineProperties
impl Unpin for OrderFeeLineProperties
impl UnwindSafe for OrderFeeLineProperties
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