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 JobJobDomainmarkParams {
    /// Whether this is a delete operation.
    #[serde(rename = "delete")]
    pub delete: Option<bool>,
    /// Base IFS path to associate with the domain.
    #[serde(rename = "root")]
    pub root: String,
    /// The type of domain.
    #[serde(rename = "type")]
    pub _type: String,
}