Struct lexoffice::model::contacts::Company[][src]

pub struct Company {
    pub allow_tax_free_invoices: Option<bool>,
    pub name: String,
    pub tax_number: Option<String>,
    pub vat_registration_id: Option<String>,
    pub contact_persons: Option<Vec<CompanyContactPerson>>,
}

Use this object to provide information for a contact of type company.

Fields

allow_tax_free_invoices: Option<bool>

Possible values are true or false.

name: String

Company name

tax_number: Option<String>

Tax number for this company –> “Steuernummer”.

vat_registration_id: Option<String>

Vat registration id for this company. This id has to follow the german rules for the vat registration ids –> “Umsatzsteuer ID”.

contact_persons: Option<Vec<CompanyContactPerson>>

A list of company contact persons. Each entry is an object of company contact person. Details of nested object please see below.

Implementations

impl Company[src]

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

Create a builder for building Company. On the builder, call .allow_tax_free_invoices(...)(optional), .name(...), .tax_number(...)(optional), .vat_registration_id(...)(optional), .contact_persons(...)(optional) to set the values of the fields. Finally, call .build() to create the instance of Company.

Trait Implementations

impl Clone for Company[src]

impl Debug for Company[src]

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

impl PartialEq<Company> for Company[src]

impl Serialize for Company[src]

impl StructuralPartialEq for Company[src]

Auto Trait Implementations

impl RefUnwindSafe for Company

impl Send for Company

impl Sync for Company

impl Unpin for Company

impl UnwindSafe for Company

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.