pub struct AsksWebPage {Show 16 fields
pub id: Option<String>,
pub created_at: Option<DateTime<Utc>>,
pub updated_at: Option<DateTime<Utc>>,
pub archived_at: Option<DateTime<Utc>>,
pub organization: Option<Box<Organization>>,
pub asks_web_settings: Option<Box<AsksWebSettings>>,
pub creator: Option<Box<User>>,
pub title: Option<String>,
pub description: Option<String>,
pub slug_id: 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>,
}Expand description
A web page for an Asks web form.
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.
organization: Option<Box<Organization>>The organization that the Asks web page belongs to.
asks_web_settings: Option<Box<AsksWebSettings>>The Asks web settings this page belongs to.
creator: Option<Box<User>>The user who created the Asks web page.
title: Option<String>The title of the page.
description: Option<String>The description of the page.
slug_id: Option<String>The page’s unique URL slug.
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 AsksWebPage
impl Clone for AsksWebPage
Source§fn clone(&self) -> AsksWebPage
fn clone(&self) -> AsksWebPage
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more