pub struct AsksWebPageCreateInput {
pub id: Option<String>,
pub asks_web_settings_id: Option<String>,
pub title: Option<String>,
pub description: Option<String>,
pub issue_created_auto_reply: Option<String>,
pub issue_created_auto_reply_enabled: Option<bool>,
pub issue_completed_auto_reply: Option<String>,
pub issue_completed_auto_reply_enabled: Option<bool>,
pub issue_canceled_auto_reply: Option<String>,
pub issue_canceled_auto_reply_enabled: Option<bool>,
}Fields§
§id: Option<String>The identifier in UUID v4 format. If none is provided, the backend will generate one.
asks_web_settings_id: Option<String>The identifier of the Asks web settings this page belongs to.
title: Option<String>The title of the page.
description: Option<String>The description of the page.
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: Option<String>The auto-reply message for issue completed. If not set, the default reply will be used.
issue_completed_auto_reply_enabled: Option<bool>Whether the auto-reply for issue completed is enabled.
issue_canceled_auto_reply: Option<String>The auto-reply message for issue canceled. 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.
Trait Implementations§
Source§impl Clone for AsksWebPageCreateInput
impl Clone for AsksWebPageCreateInput
Source§fn clone(&self) -> AsksWebPageCreateInput
fn clone(&self) -> AsksWebPageCreateInput
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 AsksWebPageCreateInput
impl Debug for AsksWebPageCreateInput
Source§impl Default for AsksWebPageCreateInput
impl Default for AsksWebPageCreateInput
Source§fn default() -> AsksWebPageCreateInput
fn default() -> AsksWebPageCreateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AsksWebPageCreateInput
impl<'de> Deserialize<'de> for AsksWebPageCreateInput
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 AsksWebPageCreateInput
impl RefUnwindSafe for AsksWebPageCreateInput
impl Send for AsksWebPageCreateInput
impl Sync for AsksWebPageCreateInput
impl Unpin for AsksWebPageCreateInput
impl UnwindSafe for AsksWebPageCreateInput
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