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

pub struct CompanyContactPerson {
    pub salutation: Option<String>,
    pub first_name: Option<String>,
    pub last_name: String,
    pub primary: Option<bool>,
    pub email_address: Option<String>,
    pub phone_number: Option<String>,
}

Please note that it’s only possible to create and change contacts with a maximum of one contact person. It’s possible to retrieve contacts with more than one contact person, but it’s not possible to update such a contact via the REST API.

Fields

salutation: Option<String>

Salutation for the contact person with max length of 25 characters.

first_name: Option<String>

First name of the contact person.

last_name: String

Last name of the contact person.

primary: Option<bool>

Flags if contact person is the primary contact person. Primary contact persons are shown on vouchers. Default is false.

email_address: Option<String>

Email address of the contact person.

phone_number: Option<String>

Phone number of the contact person.

Implementations

impl CompanyContactPerson[src]

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

Create a builder for building CompanyContactPerson. On the builder, call .salutation(...)(optional), .first_name(...)(optional), .last_name(...), .primary(...)(optional), .email_address(...)(optional), .phone_number(...)(optional) to set the values of the fields. Finally, call .build() to create the instance of CompanyContactPerson.

Trait Implementations

impl Clone for CompanyContactPerson[src]

impl Debug for CompanyContactPerson[src]

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

impl PartialEq<CompanyContactPerson> for CompanyContactPerson[src]

impl Serialize for CompanyContactPerson[src]

impl StructuralPartialEq for CompanyContactPerson[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: 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.