[][src]Struct rusoto_sesv2::GetContactResponse

pub struct GetContactResponse {
    pub attributes_data: Option<String>,
    pub contact_list_name: Option<String>,
    pub created_timestamp: Option<f64>,
    pub email_address: Option<String>,
    pub last_updated_timestamp: Option<f64>,
    pub topic_default_preferences: Option<Vec<TopicPreference>>,
    pub topic_preferences: Option<Vec<TopicPreference>>,
    pub unsubscribe_all: Option<bool>,
}

Fields

attributes_data: Option<String>

The attribute data attached to a contact.

contact_list_name: Option<String>

The name of the contact list to which the contact belongs.

created_timestamp: Option<f64>

A timestamp noting when the contact was created.

email_address: Option<String>

The contact's email addres.

last_updated_timestamp: Option<f64>

A timestamp noting the last time the contact's information was updated.

topic_default_preferences: Option<Vec<TopicPreference>>

The default topic preferences applied to the contact.

topic_preferences: Option<Vec<TopicPreference>>

The contact's preference for being opted-in to or opted-out of a topic.>

unsubscribe_all: Option<bool>

A boolean value status noting if the contact is unsubscribed from all contact list topics.

Trait Implementations

impl Clone for GetContactResponse[src]

impl Debug for GetContactResponse[src]

impl Default for GetContactResponse[src]

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

impl PartialEq<GetContactResponse> for GetContactResponse[src]

impl StructuralPartialEq for GetContactResponse[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> Same<T> for T

type Output = T

Should always be Self

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.