pub struct AuthOrganization {Show 17 fields
pub created_at: Option<DateTime<Utc>>,
pub id: Option<String>,
pub name: Option<String>,
pub enabled: Option<bool>,
pub url_key: Option<String>,
pub previous_url_keys: Option<Vec<String>>,
pub logo_url: Option<String>,
pub deletion_requested_at: Option<DateTime<Utc>>,
pub release_channel: Option<ReleaseChannel>,
pub saml_enabled: Option<bool>,
pub saml_settings: Option<Value>,
pub allowed_auth_services: Option<Vec<String>>,
pub scim_enabled: Option<bool>,
pub service_id: Option<String>,
pub region: Option<String>,
pub hide_non_primary_organizations: Option<bool>,
pub user_count: Option<f64>,
}Expand description
An organization. Organizations are root-level objects that contain users and teams.
Fields§
§created_at: Option<DateTime<Utc>>The time at which the entity was created.
id: Option<String>The unique identifier of the entity.
name: Option<String>The organization’s name.
enabled: Option<bool>Whether the organization is enabled. Used as a superuser tool to lock down the org.
url_key: Option<String>The organization’s unique URL key.
previous_url_keys: Option<Vec<String>>Previously used URL keys for the organization (last 3 are kept and redirected).
logo_url: Option<String>The organization’s logo URL.
deletion_requested_at: Option<DateTime<Utc>>The time at which deletion of the organization was requested.
release_channel: Option<ReleaseChannel>The feature release channel the organization belongs to.
saml_enabled: Option<bool>Whether SAML authentication is enabled for organization.
saml_settings: Option<Value>INTERNAL SAML settings
allowed_auth_services: Option<Vec<String>>Allowed authentication providers, empty array means all are allowed
scim_enabled: Option<bool>Whether SCIM provisioning is enabled for organization.
service_id: Option<String>The email domain or URL key for the organization.
region: Option<String>The region the organization is hosted in.
hide_non_primary_organizations: Option<bool>Whether to hide other organizations for new users signing up with email domains claimed by this organization.
user_count: Option<f64>Trait Implementations§
Source§impl Clone for AuthOrganization
impl Clone for AuthOrganization
Source§fn clone(&self) -> AuthOrganization
fn clone(&self) -> AuthOrganization
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more