[][src]Struct rusoto_alexaforbusiness::CreateContactRequest

pub struct CreateContactRequest {
    pub client_request_token: Option<String>,
    pub display_name: Option<String>,
    pub first_name: String,
    pub last_name: Option<String>,
    pub phone_number: Option<String>,
}

Fields

client_request_token: Option<String>

A unique, user-specified identifier for this request that ensures idempotency.

display_name: Option<String>

The name of the contact to display on the console.

first_name: String

The first name of the contact that is used to call the contact on the device.

last_name: Option<String>

The last name of the contact that is used to call the contact on the device.

phone_number: Option<String>

The phone number of the contact in E.164 format.

Trait Implementations

impl PartialEq<CreateContactRequest> for CreateContactRequest[src]

impl Default for CreateContactRequest[src]

impl Clone for CreateContactRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CreateContactRequest[src]

impl Serialize for CreateContactRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self