openfga 1.0.2

Rust SDK for OpenFGA — the open-source authorization system
Documentation
/*
 * OpenFGA
 *
 * A high performance and flexible authorization/permission engine built for developers and inspired by Google Zanzibar.
 *
 * The version of the OpenAPI document: 1.x
 * Contact: community@openfga.dev
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

/// Leaf : A leaf node contains either - a set of users (which may be individual users, or usersets   referencing other relations) - a computed node, which is the result of a computed userset   value in the authorization model - a tupleToUserset nodes, containing the result of expanding   a tupleToUserset value in a authorization model.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct Leaf {
    #[serde(rename = "users", skip_serializing_if = "Option::is_none")]
    pub users: Option<models::Users>,
    #[serde(rename = "computed", skip_serializing_if = "Option::is_none")]
    pub computed: Option<models::Computed>,
    #[serde(rename = "tupleToUserset", skip_serializing_if = "Option::is_none")]
    pub tuple_to_userset: Option<models::UsersetTreeTupleToUserset>,
}

impl Leaf {
    /// A leaf node contains either - a set of users (which may be individual users, or usersets   referencing other relations) - a computed node, which is the result of a computed userset   value in the authorization model - a tupleToUserset nodes, containing the result of expanding   a tupleToUserset value in a authorization model.
    pub fn new() -> Leaf {
        Leaf {
            users: None,
            computed: None,
            tuple_to_userset: None,
        }
    }
}