pub struct OrganizationDomainCreateInput {
pub id: Option<String>,
pub identity_provider_id: Option<String>,
pub name: Option<String>,
pub verification_email: Option<String>,
pub auth_type: Option<String>,
}Fields§
§id: Option<String>The identifier in UUID v4 format. If none is provided, the backend will generate one.
identity_provider_id: Option<String>The identity provider to which to add the domain.
name: Option<String>The domain name to add.
verification_email: Option<String>The email address to which to send the verification code.
auth_type: Option<String>The authentication type this domain is for.
Trait Implementations§
Source§impl Clone for OrganizationDomainCreateInput
impl Clone for OrganizationDomainCreateInput
Source§fn clone(&self) -> OrganizationDomainCreateInput
fn clone(&self) -> OrganizationDomainCreateInput
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 Default for OrganizationDomainCreateInput
impl Default for OrganizationDomainCreateInput
Source§fn default() -> OrganizationDomainCreateInput
fn default() -> OrganizationDomainCreateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrganizationDomainCreateInput
impl<'de> Deserialize<'de> for OrganizationDomainCreateInput
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 OrganizationDomainCreateInput
impl RefUnwindSafe for OrganizationDomainCreateInput
impl Send for OrganizationDomainCreateInput
impl Sync for OrganizationDomainCreateInput
impl Unpin for OrganizationDomainCreateInput
impl UnwindSafe for OrganizationDomainCreateInput
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