1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#[allow(unused_imports)]
use serde_json::Value;

#[derive(Debug, Serialize, Deserialize)]
pub struct AuthAccessAccessItemFileGroup {
    /// Specifies the serialized form of a persona, which can be 'UID:0', 'USER:name', 'GID:0', 'GROUP:wheel', or 'SID:S-1-1'.
    #[serde(rename = "id")]
    pub id: Option<String>,
    /// Specifies the persona name, which must be combined with a type.
    #[serde(rename = "name")]
    pub name: Option<String>,
    /// Specifies the type of persona, which must be combined with a name.
    #[serde(rename = "type")]
    pub _type: Option<String>,
}