Struct lexoffice::model::down_payment_invoices::TaxAmounts[][src]

pub struct TaxAmounts {
    pub tax_rate_percentage: Option<f64>,
    pub tax_amount: Option<f64>,
    pub net_amount: Option<f64>,
}

Fields

tax_rate_percentage: Option<f64>

Tax rate as percentage value. Supported tax rates are 0, 5, 7, 16, 19.

tax_amount: Option<f64>

The total tax amount for this tax rate. The value can contain up to 2 decimals.

net_amount: Option<f64>

The total net amount for this tax rate. The value can contain up to 2 decimals.

Implementations

impl TaxAmounts[src]

pub fn builder() -> TaxAmountsBuilder<((), (), ())>[src]

Create a builder for building TaxAmounts. On the builder, call .tax_rate_percentage(...)(optional), .tax_amount(...)(optional), .net_amount(...)(optional) to set the values of the fields. Finally, call .build() to create the instance of TaxAmounts.

Trait Implementations

impl Clone for TaxAmounts[src]

impl Debug for TaxAmounts[src]

impl<'de> Deserialize<'de> for TaxAmounts[src]

impl PartialEq<TaxAmounts> for TaxAmounts[src]

impl Serialize for TaxAmounts[src]

impl StructuralPartialEq for TaxAmounts[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.