authress 0.1.66

The Authress SDK for RUST - provides authorization as a service with fully compatible REST apis. Authentication / Authorization / User Identity Roles / Permissions / Policies
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18



#[derive(Default, Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct TenantData {
    #[serde(rename = "name", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
    pub name: Option<Option<String>>,
}

impl TenantData {
    pub fn new() -> TenantData {
        TenantData {
            name: None,
        }
    }
}