[][src]Struct billecta::SelfInvoiceActionRecordView

pub struct SelfInvoiceActionRecordView {
    pub article_description: Option<String>,
    pub article_number: Option<String>,
    pub cost_center: Option<String>,
    pub discount_amount: Option<AmountView>,
    pub discount_percentage: Option<f64>,
    pub discount_type: Option<DiscountTypeView>,
    pub hidden: Option<bool>,
    pub product_public_id: Option<Guid>,
    pub project: Option<String>,
    pub quantity: Option<f64>,
    pub record_type: Option<RecordTypeView>,
    pub sequence_no: Option<i64>,
    pub unit_price: Option<AmountView>,
    pub units: Option<String>,
    pub vat: Option<f64>,
}

Fields

article_description: Option<String>article_number: Option<String>cost_center: Option<String>discount_amount: Option<AmountView>discount_percentage: Option<f64>discount_type: Option<DiscountTypeView>hidden: Option<bool>product_public_id: Option<Guid>project: Option<String>quantity: Option<f64>record_type: Option<RecordTypeView>sequence_no: Option<i64>unit_price: Option<AmountView>units: Option<String>vat: Option<f64>

Trait Implementations

impl Clone for SelfInvoiceActionRecordView[src]

impl Debug for SelfInvoiceActionRecordView[src]

impl Default for SelfInvoiceActionRecordView[src]

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

impl Serialize for SelfInvoiceActionRecordView[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: Deserialize<'de>, 
[src]

impl<T> From<T> 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.