[][src]Struct billecta::ReconciliationInvoiceActionSubView

pub struct ReconciliationInvoiceActionSubView {
    pub action_public_id: Option<String>,
    pub action_type: Option<ActionTypeView>,
    pub closed_date: Option<DateTime>,
    pub created: Option<DateTime>,
    pub creditor_name: Option<String>,
    pub creditor_org_no: Option<String>,
    pub creditor_public_id: Option<Guid>,
    pub current_amount: Option<AmountView>,
    pub debt_collection_action_public_id: Option<String>,
    pub debtor_debtor_no: Option<String>,
    pub debtor_email: Option<String>,
    pub debtor_name: Option<String>,
    pub debtor_org_no: Option<String>,
    pub debtor_phone: Option<String>,
    pub delivery_method: Option<DeliveryMethodTypeView>,
    pub invoice_file: Option<FileView>,
    pub invoice_number: Option<String>,
    pub invoice_sent_date: Option<DateTime>,
    pub invoiced_amount: Option<AmountView>,
    pub ocr: Option<String>,
    pub reminder_invoice_sent_date: Option<DateTime>,
    pub stage: Option<ActionStageTypeView>,
}

Fields

action_public_id: Option<String>action_type: Option<ActionTypeView>closed_date: Option<DateTime>created: Option<DateTime>creditor_name: Option<String>creditor_org_no: Option<String>creditor_public_id: Option<Guid>current_amount: Option<AmountView>debt_collection_action_public_id: Option<String>debtor_debtor_no: Option<String>debtor_email: Option<String>debtor_name: Option<String>debtor_org_no: Option<String>debtor_phone: Option<String>delivery_method: Option<DeliveryMethodTypeView>invoice_file: Option<FileView>invoice_number: Option<String>invoice_sent_date: Option<DateTime>invoiced_amount: Option<AmountView>ocr: Option<String>reminder_invoice_sent_date: Option<DateTime>stage: Option<ActionStageTypeView>

Trait Implementations

impl Clone for ReconciliationInvoiceActionSubView[src]

impl Debug for ReconciliationInvoiceActionSubView[src]

impl Default for ReconciliationInvoiceActionSubView[src]

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

impl Serialize for ReconciliationInvoiceActionSubView[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,