Struct mailslurp::models::reply_to_alias_email_options::ReplyToAliasEmailOptions[][src]

pub struct ReplyToAliasEmailOptions {
    pub attachments: Option<Vec<String>>,
    pub body: Option<String>,
    pub charset: Option<String>,
    pub is_html: Option<bool>,
    pub send_strategy: Option<SendStrategy>,
    pub template: Option<String>,
    pub template_variables: Option<Value>,
}

ReplyToAliasEmailOptions : Options for replying to an alias email using the alias inbox

Fields

attachments: Option<Vec<String>>

List of uploaded attachments to send with the reply. Optional.

body: Option<String>

Body of the reply email you want to send

charset: Option<String>

The charset that your message should be sent with. Optional. Default is UTF-8

is_html: Option<bool>

Is the reply HTML

send_strategy: Option<SendStrategy>

When to send the email. Typically immediately

template: Option<String>

Template ID to use instead of body. Will use template variable map to fill defined variable slots.

template_variables: Option<Value>

Template variables if using a template

Implementations

impl ReplyToAliasEmailOptions[src]

pub fn new() -> ReplyToAliasEmailOptions[src]

Options for replying to an alias email using the alias inbox

Trait Implementations

impl Clone for ReplyToAliasEmailOptions[src]

impl Debug for ReplyToAliasEmailOptions[src]

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

impl PartialEq<ReplyToAliasEmailOptions> for ReplyToAliasEmailOptions[src]

impl Serialize for ReplyToAliasEmailOptions[src]

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