pub struct UpdateInstanceOrganizationSettingsRequest {
pub enabled: Option<Option<bool>>,
pub max_allowed_memberships: Option<Option<i64>>,
pub admin_delete_enabled: Option<Option<bool>>,
pub domains_enabled: Option<Option<bool>>,
pub domains_enrollment_modes: Option<Vec<String>>,
pub creator_role_id: Option<String>,
pub domains_default_role_id: Option<String>,
}Fields§
§enabled: Option<Option<bool>>§max_allowed_memberships: Option<Option<i64>>§admin_delete_enabled: Option<Option<bool>>§domains_enabled: Option<Option<bool>>§domains_enrollment_modes: Option<Vec<String>>Specify which enrollment modes to enable for your Organization Domains. Supported modes are ‘automatic_invitation’ & ‘automatic_suggestion’.
creator_role_id: Option<String>Specify what the default organization role is for an organization creator.
domains_default_role_id: Option<String>Specify what the default organization role is for the organization domains.
Implementations§
Trait Implementations§
Source§impl Clone for UpdateInstanceOrganizationSettingsRequest
impl Clone for UpdateInstanceOrganizationSettingsRequest
Source§fn clone(&self) -> UpdateInstanceOrganizationSettingsRequest
fn clone(&self) -> UpdateInstanceOrganizationSettingsRequest
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<'de> Deserialize<'de> for UpdateInstanceOrganizationSettingsRequest
impl<'de> Deserialize<'de> for UpdateInstanceOrganizationSettingsRequest
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 PartialEq for UpdateInstanceOrganizationSettingsRequest
impl PartialEq for UpdateInstanceOrganizationSettingsRequest
Source§fn eq(&self, other: &UpdateInstanceOrganizationSettingsRequest) -> bool
fn eq(&self, other: &UpdateInstanceOrganizationSettingsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateInstanceOrganizationSettingsRequest
Auto Trait Implementations§
impl Freeze for UpdateInstanceOrganizationSettingsRequest
impl RefUnwindSafe for UpdateInstanceOrganizationSettingsRequest
impl Send for UpdateInstanceOrganizationSettingsRequest
impl Sync for UpdateInstanceOrganizationSettingsRequest
impl Unpin for UpdateInstanceOrganizationSettingsRequest
impl UnwindSafe for UpdateInstanceOrganizationSettingsRequest
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