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

pub struct UnitPrice {
    pub currency: Option<Currency>,
    pub net_amount: Option<f64>,
    pub gross_amount: Option<f64>,
    pub tax_rate_percentage: Option<f64>,
}

Fields

currency: Option<Currency>

The currency of the price. Currently only EUR is supported.

net_amount: Option<f64>

The net price of the unit price. The value can contain up to 4 decimals.

gross_amount: Option<f64>

The gross price of the unit price. The value can contain up to 4 decimals.

tax_rate_percentage: Option<f64>

The tax rate of the unit price. Supported tax rates are 0, 5, 7, 16, 19. For vat-free sales vouchers the tax rate percentage must be 0.

Implementations

impl UnitPrice[src]

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

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

Trait Implementations

impl Clone for UnitPrice[src]

impl Debug for UnitPrice[src]

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

impl PartialEq<UnitPrice> for UnitPrice[src]

impl Serialize for UnitPrice[src]

impl StructuralPartialEq for UnitPrice[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.