[][src]Struct billecta::InvoiceActionEntryView

pub struct InvoiceActionEntryView {
    pub action_type: Option<ActionTypeView>,
    pub attachments: Vec<InvoiceActionAttachmentView>,
    pub autogiro: Option<AutogiroWithdrawalView>,
    pub communication_language: Option<LanguageTypeView>,
    pub credit_card: Option<CreditCardWithdrawalView>,
    pub crediting_invoice_public_id: Option<String>,
    pub creditor_public_id: Option<Guid>,
    pub debt_collection_details: Option<DebtCollectionDetailsView>,
    pub debtor_public_id: Option<Guid>,
    pub delivery_address_override: Option<DeliveryAddressOverrideView>,
    pub delivery_date: Option<DateTime>,
    pub delivery_method: Option<DeliveryMethodTypeView>,
    pub due_date: Option<DateTime>,
    pub external_reference: Option<String>,
    pub freight_fee: Option<AmountView>,
    pub interest_percentage: Option<f64>,
    pub interest_start_in_days_after_due_date: Option<i64>,
    pub interest_terms_in_days: Option<i64>,
    pub interest_type: Option<InterestTypeView>,
    pub invoice_date: Option<DateTime>,
    pub invoice_fee: Option<AmountView>,
    pub invoice_number: Option<String>,
    pub invoice_pdf: Option<InvoiceFileView>,
    pub is_locked: Option<bool>,
    pub message: Option<String>,
    pub our_reference: Option<String>,
    pub payment_override: Option<PaymentOverrideView>,
    pub reason_for_higher_interest: Option<String>,
    pub records: Vec<InvoiceActionRecordView>,
    pub reminder_invoice_details: Option<ReminderInvoiceDetailsView>,
    pub reverse_vat_details: Option<ReverseVATDetailsView>,
    pub rot_rut_details: Option<RotRutDetailsView>,
    pub send_by_mail_if_email_not_viewed_in_days: Option<i64>,
    pub use_debtor_balance: Option<bool>,
    pub vat_is_included: Option<bool>,
    pub your_reference: Option<String>,
}

Fields

action_type: Option<ActionTypeView>attachments: Vec<InvoiceActionAttachmentView>autogiro: Option<AutogiroWithdrawalView>communication_language: Option<LanguageTypeView>credit_card: Option<CreditCardWithdrawalView>crediting_invoice_public_id: Option<String>creditor_public_id: Option<Guid>debt_collection_details: Option<DebtCollectionDetailsView>debtor_public_id: Option<Guid>delivery_address_override: Option<DeliveryAddressOverrideView>delivery_date: Option<DateTime>delivery_method: Option<DeliveryMethodTypeView>due_date: Option<DateTime>external_reference: Option<String>freight_fee: Option<AmountView>interest_percentage: Option<f64>interest_start_in_days_after_due_date: Option<i64>interest_terms_in_days: Option<i64>interest_type: Option<InterestTypeView>invoice_date: Option<DateTime>invoice_fee: Option<AmountView>invoice_number: Option<String>invoice_pdf: Option<InvoiceFileView>is_locked: Option<bool>message: Option<String>our_reference: Option<String>payment_override: Option<PaymentOverrideView>reason_for_higher_interest: Option<String>records: Vec<InvoiceActionRecordView>reminder_invoice_details: Option<ReminderInvoiceDetailsView>reverse_vat_details: Option<ReverseVATDetailsView>rot_rut_details: Option<RotRutDetailsView>send_by_mail_if_email_not_viewed_in_days: Option<i64>use_debtor_balance: Option<bool>vat_is_included: Option<bool>your_reference: Option<String>

Trait Implementations

impl Clone for InvoiceActionEntryView[src]

impl Debug for InvoiceActionEntryView[src]

impl Default for InvoiceActionEntryView[src]

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

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