pub struct EmailIntakeAddress {Show 18 fields
pub id: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub updated_at: Option<DateTime<Utc>>,
pub archived_at: Option<DateTime<Utc>>,
pub address: Option<String>,
pub type: Option<EmailIntakeAddressType>,
pub forwarding_email_address: Option<String>,
pub sender_name: Option<String>,
pub enabled: Option<bool>,
pub replies_enabled: Option<bool>,
pub use_user_names_in_replies: Option<bool>,
pub customer_requests_enabled: Option<bool>,
pub issue_created_auto_reply: Option<String>,
pub issue_created_auto_reply_enabled: Option<bool>,
pub issue_completed_auto_reply_enabled: Option<bool>,
pub issue_completed_auto_reply: Option<String>,
pub issue_canceled_auto_reply_enabled: Option<bool>,
pub issue_canceled_auto_reply: Option<String>,
}Fields§
§id: Option<String>§created_at: Option<DateTime<Utc>>§updated_at: Option<DateTime<Utc>>§archived_at: Option<DateTime<Utc>>§address: Option<String>§type: Option<EmailIntakeAddressType>§forwarding_email_address: Option<String>§sender_name: Option<String>§enabled: Option<bool>§replies_enabled: Option<bool>§use_user_names_in_replies: Option<bool>§customer_requests_enabled: Option<bool>§issue_created_auto_reply: Option<String>§issue_created_auto_reply_enabled: Option<bool>§issue_completed_auto_reply_enabled: Option<bool>§issue_completed_auto_reply: Option<String>§issue_canceled_auto_reply_enabled: Option<bool>§issue_canceled_auto_reply: Option<String>Trait Implementations§
Source§impl Clone for EmailIntakeAddress
impl Clone for EmailIntakeAddress
Source§fn clone(&self) -> EmailIntakeAddress
fn clone(&self) -> EmailIntakeAddress
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EmailIntakeAddress
impl Debug for EmailIntakeAddress
Source§impl Default for EmailIntakeAddress
impl Default for EmailIntakeAddress
Source§fn default() -> EmailIntakeAddress
fn default() -> EmailIntakeAddress
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EmailIntakeAddresswhere
EmailIntakeAddress: Default,
impl<'de> Deserialize<'de> for EmailIntakeAddresswhere
EmailIntakeAddress: Default,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for EmailIntakeAddress
impl RefUnwindSafe for EmailIntakeAddress
impl Send for EmailIntakeAddress
impl Sync for EmailIntakeAddress
impl Unpin for EmailIntakeAddress
impl UnwindSafe for EmailIntakeAddress
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more