pub struct EmailIntakeAddressUpdateInput {Show 14 fields
pub enabled: Option<bool>,
pub forwarding_email_address: Option<String>,
pub sender_name: Option<String>,
pub team_id: Option<String>,
pub template_id: Option<String>,
pub replies_enabled: Option<bool>,
pub use_user_names_in_replies: Option<bool>,
pub issue_created_auto_reply_enabled: Option<bool>,
pub issue_created_auto_reply: Option<String>,
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>,
pub customer_requests_enabled: Option<bool>,
}Fields§
§enabled: Option<bool>Whether the email address is currently enabled. If set to false, the email address will be disabled and no longer accept incoming emails.
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.
team_id: Option<String>The identifier or key of the team this email address will intake issues for.
template_id: Option<String>The identifier of the template this email address will intake issues for.
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.
issue_created_auto_reply_enabled: Option<bool>Whether the issue created auto-reply is enabled.
issue_created_auto_reply: Option<String>The auto-reply message for issue created.
issue_completed_auto_reply_enabled: Option<bool>Whether the issue completed auto-reply is enabled.
issue_completed_auto_reply: Option<String>Custom auto-reply message for issue completed.
issue_canceled_auto_reply_enabled: Option<bool>Whether the issue canceled auto-reply is enabled.
issue_canceled_auto_reply: Option<String>Custom auto-reply message for issue canceled.
customer_requests_enabled: Option<bool>Whether customer requests are enabled.
Trait Implementations§
Source§impl Clone for EmailIntakeAddressUpdateInput
impl Clone for EmailIntakeAddressUpdateInput
Source§fn clone(&self) -> EmailIntakeAddressUpdateInput
fn clone(&self) -> EmailIntakeAddressUpdateInput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more