[][src]Struct billecta::DebtorView

pub struct DebtorView {
    pub address: Option<String>,
    pub address2: Option<String>,
    pub attention: Option<String>,
    pub autogiro: Option<DebtorAutogiroView>,
    pub care_of: Option<String>,
    pub city: Option<String>,
    pub contact_email: Option<String>,
    pub contact_name: Option<String>,
    pub country_code: Option<String>,
    pub created: Option<DateTime>,
    pub credit_cards: Vec<DebtorCreditCardView>,
    pub creditor_public_id: Option<Guid>,
    pub debtor_external_id: Option<String>,
    pub debtor_no: Option<String>,
    pub debtor_public_id: Option<Guid>,
    pub debtor_self_invoice_info: Option<DebtorSelfInvoiceInfoView>,
    pub debtor_type: Option<String>,
    pub default_action_config: Option<DebtorDefaultActionConfigView>,
    pub e_invoice_bank: Option<String>,
    pub email: Option<String>,
    pub gln: Option<String>,
    pub intermediator: Option<String>,
    pub is_active: Option<bool>,
    pub name: Option<String>,
    pub notes: Option<String>,
    pub org_no: Option<String>,
    pub phone: Option<String>,
    pub vat_number: Option<String>,
    pub zip_code: Option<String>,
}

Fields

address: Option<String>address2: Option<String>attention: Option<String>autogiro: Option<DebtorAutogiroView>care_of: Option<String>city: Option<String>contact_email: Option<String>contact_name: Option<String>country_code: Option<String>created: Option<DateTime>credit_cards: Vec<DebtorCreditCardView>creditor_public_id: Option<Guid>debtor_external_id: Option<String>debtor_no: Option<String>debtor_public_id: Option<Guid>debtor_self_invoice_info: Option<DebtorSelfInvoiceInfoView>debtor_type: Option<String>default_action_config: Option<DebtorDefaultActionConfigView>e_invoice_bank: Option<String>email: Option<String>gln: Option<String>intermediator: Option<String>is_active: Option<bool>name: Option<String>notes: Option<String>org_no: Option<String>phone: Option<String>vat_number: Option<String>zip_code: Option<String>

Trait Implementations

impl Clone for DebtorView[src]

impl Debug for DebtorView[src]

impl Default for DebtorView[src]

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

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