pub struct IntercomSettingsInput {
pub send_note_on_status_change: Option<bool>,
pub send_note_on_comment: Option<bool>,
pub automate_ticket_reopening_on_completion: Option<bool>,
pub automate_ticket_reopening_on_cancellation: Option<bool>,
pub automate_ticket_reopening_on_comment: Option<bool>,
pub disable_customer_requests_auto_creation: Option<bool>,
pub automate_ticket_reopening_on_project_completion: Option<bool>,
pub automate_ticket_reopening_on_project_cancellation: Option<bool>,
pub enable_ai_intake: Option<bool>,
}Fields§
§send_note_on_status_change: Option<bool>§send_note_on_comment: Option<bool>§automate_ticket_reopening_on_completion: Option<bool>§automate_ticket_reopening_on_cancellation: Option<bool>§automate_ticket_reopening_on_comment: Option<bool>§disable_customer_requests_auto_creation: Option<bool>§automate_ticket_reopening_on_project_completion: Option<bool>§automate_ticket_reopening_on_project_cancellation: Option<bool>§enable_ai_intake: Option<bool>Trait Implementations§
Source§impl Clone for IntercomSettingsInput
impl Clone for IntercomSettingsInput
Source§fn clone(&self) -> IntercomSettingsInput
fn clone(&self) -> IntercomSettingsInput
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 IntercomSettingsInput
impl Debug for IntercomSettingsInput
Source§impl Default for IntercomSettingsInput
impl Default for IntercomSettingsInput
Source§fn default() -> IntercomSettingsInput
fn default() -> IntercomSettingsInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IntercomSettingsInput
impl<'de> Deserialize<'de> for IntercomSettingsInput
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 IntercomSettingsInput
impl RefUnwindSafe for IntercomSettingsInput
impl Send for IntercomSettingsInput
impl Sync for IntercomSettingsInput
impl Unpin for IntercomSettingsInput
impl UnwindSafe for IntercomSettingsInput
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