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

#[derive(Debug, Serialize, Deserialize)]
pub struct MappingUsersRulesRuleOptionsExtended {
    /// If true, and the rule was applied successfully, stop processing further.
    #[serde(rename = "break")]
    pub _break: Option<bool>,
    ///
    #[serde(rename = "default_user")]
    pub default_user: Option <crate::models::MappingUsersRulesRuleOptionsDefaultUser>,
    /// If true, the primary GID and primary group SID should be copied to the existing credential.
    #[serde(rename = "group")]
    pub group: Option<bool>,
    /// If true, all additional identifiers should be copied to the existing credential.
    #[serde(rename = "groups")]
    pub groups: Option<bool>,
    /// If true, the primary UID and primary user SID should be copied to the existing credential.
    #[serde(rename = "user")]
    pub user: Option<bool>,
}