pub struct EmailIntakeAddress {Show 23 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 template: Option<Box<Template>>,
pub team: Option<Box<Team>>,
pub organization: Option<Box<Organization>>,
pub ses_domain_identity: Option<Box<SesDomainIdentity>>,
pub creator: Option<Box<User>>,
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>,
}Expand description
An email address that can be used for submitting issues.
Fields§
§id: Option<String>The unique identifier of the entity.
created_at: Option<DateTime<Utc>>The time at which the entity was created.
updated_at: Option<DateTime<Utc>>The last time at which the entity was meaningfully updated. This is the same as the creation time if the entity hasn’t been updated after creation.
archived_at: Option<DateTime<Utc>>The time at which the entity was archived. Null if the entity has not been archived.
address: Option<String>Unique email address user name (before @) used for incoming email.
type: Option<EmailIntakeAddressType>The type of the email address.
forwarding_email_address: Option<String>The email address used to forward emails to the intake address.
sender_name: Option<String>The name to be used for outgoing emails.
enabled: Option<bool>Whether the email address is enabled.
replies_enabled: Option<bool>Whether email replies are enabled.
use_user_names_in_replies: Option<bool>Whether the commenter’s name is included in the email replies.
template: Option<Box<Template>>The template that the email address is associated with.
team: Option<Box<Team>>The team that the email address is associated with.
organization: Option<Box<Organization>>The organization that the email address is associated with.
ses_domain_identity: Option<Box<SesDomainIdentity>>The SES domain identity that the email address is associated with.
creator: Option<Box<User>>The user who created the email intake address.
customer_requests_enabled: Option<bool>Whether issues created from that email address will be turned into customer requests.
issue_created_auto_reply: Option<String>The auto-reply message for issue created. If not set, the default reply will be used.
issue_created_auto_reply_enabled: Option<bool>Whether the auto-reply for issue created is enabled.
issue_completed_auto_reply_enabled: Option<bool>Whether the auto-reply for issue completed is enabled.
issue_completed_auto_reply: Option<String>The auto-reply message for issue completed. If not set, the default reply will be used.
issue_canceled_auto_reply_enabled: Option<bool>Whether the auto-reply for issue canceled is enabled.
issue_canceled_auto_reply: Option<String>The auto-reply message for issue canceled. If not set, the default reply will be used.
Trait Implementations§
Source§impl Clone for EmailIntakeAddress
impl Clone for EmailIntakeAddress
Source§fn clone(&self) -> EmailIntakeAddress
fn clone(&self) -> EmailIntakeAddress
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more