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
/// LinkedGroup : The referenced group



#[derive(Default, Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct LinkedGroup {
    /// The unique identifier for the group.
    #[serde(rename = "groupId")]
    pub group_id: String,
}

impl LinkedGroup {
    /// The referenced group
    pub fn new(group_id: String) -> LinkedGroup {
        LinkedGroup {
            group_id,
        }
    }
}