propelauth 0.23.3

A Rust crate for managing authentication and authorization with support for multi-tenant / B2B products, powered by PropelAuth
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[derive(Deserialize, Debug)]
pub struct FetchCustomRoleMappingsResponse {
    #[serde(rename = "custom_role_mappings", default)]
    pub custom_role_mappings: Vec<CustomRoleMappingResponse>,
}

#[derive(Deserialize, Debug)]
pub struct CustomRoleMappingResponse {
    #[serde(rename = "custom_role_mapping_name")]
    pub custom_role_mapping_name: String,
    #[serde(rename = "num_orgs_subscribed")]
    pub num_orgs_subscribed: i32,
}