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 MappingIdentityTargetCreateParams {
    /// Identity is preferred on-disk.
    #[serde(rename = "on_disk")]
    pub on_disk: Option<bool>,
    /// Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'.
    #[serde(rename = "target")]
    pub target:crate::models::AuthAccessAccessItemFileGroup,
    /// Origin of identity mapping.
    #[serde(rename = "type")]
    pub _type: Option<String>,
}