pub struct EmailIntakeAddressCreateInput {Show 15 fields
pub id: Option<String>,
pub type: Option<EmailIntakeAddressType>,
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§
§id: Option<String>The identifier in UUID v4 format. If none is provided, the backend will generate one.
type: Option<EmailIntakeAddressType>The type of the email address. If not provided, the backend will default to team or template.
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>The 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>The auto-reply message for issue canceled.
customer_requests_enabled: Option<bool>Whether customer requests are enabled.
Trait Implementations§
Source§impl Clone for EmailIntakeAddressCreateInput
impl Clone for EmailIntakeAddressCreateInput
Source§fn clone(&self) -> EmailIntakeAddressCreateInput
fn clone(&self) -> EmailIntakeAddressCreateInput
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more