sideko_rest_api 0.9.2

Rust API Client
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Role
#[derive(serde::Serialize, serde::Deserialize, Debug, Default, Clone)]
pub struct Role {
    pub definition: crate::models::RoleDefinition,
    pub id: String,
    /// The unique identifier of the Sideko object
    pub object_id: String,
    /// The object types that roles can be assigned to.
    pub object_type: crate::models::ObjectTypeEnum,
    pub user: crate::models::User,
}