1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
/// CloudJob : A cloud job for archiving or recalling files

#[allow(unused_imports)]
use serde_json::Value;

#[derive(Debug, Serialize, Deserialize)]
pub struct CloudJob {
    /// Whether to apply to the given operation type or to all jobs of the given operation type
    #[serde(rename = "all")]
    pub all: Option<bool>,
    /// The desired state of the job or operation
    #[serde(rename = "state")]
    pub state: Option<String>,
}