[][src]Struct mailslurp::models::create_contact_options::CreateContactOptions

pub struct CreateContactOptions {
    pub email_addresses: Option<Vec<String>>,
    pub first_name: Option<String>,
    pub group_id: Option<String>,
    pub meta_data: Option<Value>,
    pub opt_out: Option<bool>,
    pub tags: Option<Vec<String>>,
    pub last_name: Option<String>,
    pub company: Option<String>,
}

Fields

email_addresses: Option<Vec<String>>

Set of email addresses belonging to the contact

first_name: Option<String>group_id: Option<String>

Group IDs that contact belongs to

meta_data: Option<Value>opt_out: Option<bool>

Has the user explicitly or implicitly opted out of being contacted? If so MailSlurp will ignore them in all actions.

tags: Option<Vec<String>>

Tags that can be used to search and group contacts

last_name: Option<String>company: Option<String>

Implementations

impl CreateContactOptions[src]

Trait Implementations

impl Clone for CreateContactOptions[src]

impl Debug for CreateContactOptions[src]

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

impl PartialEq<CreateContactOptions> for CreateContactOptions[src]

impl Serialize for CreateContactOptions[src]

impl StructuralPartialEq for CreateContactOptions[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, 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.