pub struct AsksWebSettings {
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 creator: Option<Box<User>>,
pub domain: Option<String>,
pub email_intake_address: Option<Box<EmailIntakeAddress>>,
pub identity_provider: Option<Box<IdentityProvider>>,
}Expand description
Settings 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 settings are associated with.
creator: Option<Box<User>>The user who created the Asks web settings.
domain: Option<String>The custom domain for the Asks web form. If null, the default Linear-hosted domain will be used.
email_intake_address: Option<Box<EmailIntakeAddress>>The email intake address associated with these Asks web settings.
identity_provider: Option<Box<IdentityProvider>>The identity provider for SAML authentication on this Asks web form.
Trait Implementations§
Source§impl Clone for AsksWebSettings
impl Clone for AsksWebSettings
Source§fn clone(&self) -> AsksWebSettings
fn clone(&self) -> AsksWebSettings
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 AsksWebSettings
impl Debug for AsksWebSettings
Source§impl Default for AsksWebSettings
impl Default for AsksWebSettings
Source§fn default() -> AsksWebSettings
fn default() -> AsksWebSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AsksWebSettingswhere
AsksWebSettings: Default,
impl<'de> Deserialize<'de> for AsksWebSettingswhere
AsksWebSettings: Default,
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
Source§impl GraphQLFields for AsksWebSettings
impl GraphQLFields for AsksWebSettings
Auto Trait Implementations§
impl Freeze for AsksWebSettings
impl RefUnwindSafe for AsksWebSettings
impl Send for AsksWebSettings
impl Sync for AsksWebSettings
impl Unpin for AsksWebSettings
impl UnwindSafe for AsksWebSettings
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