clerk-sdk-rust-community 1.0.4

The Clerk REST Backend API, meant to be accessed by backend servers. Please see https://clerk.com/docs for more information.
Documentation
/*
 * Clerk Backend API
 *
 * The Clerk REST Backend API, meant to be accessed by backend servers. Please see https://clerk.com/docs for more information.
 *
 * The version of the OpenAPI document: v1
 * Contact: support@clerk.dev
 * Generated by: https://openapi-generator.tech
 */




#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct OrganizationSettings {
    /// String representing the object's type. Objects of the same type share the same value.
    #[serde(rename = "object")]
    pub object: Object,
    #[serde(rename = "enabled")]
    pub enabled: bool,
    #[serde(rename = "max_allowed_memberships")]
    pub max_allowed_memberships: i32,
}

impl OrganizationSettings {
    pub fn new(object: Object, enabled: bool, max_allowed_memberships: i32) -> OrganizationSettings {
        OrganizationSettings {
            object,
            enabled,
            max_allowed_memberships,
        }
    }
}

/// String representing the object's type. Objects of the same type share the same value.
#[derive(Clone, Copy, Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Serialize, Deserialize)]
pub enum Object {
    #[serde(rename = "organization_settings")]
    OrganizationSettings,
}

impl Default for Object {
    fn default() -> Object {
        Self::OrganizationSettings
    }
}