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

#[derive(Debug, Serialize, Deserialize)]
pub struct JobPolicyCreateParams {
    /// A helpful human-readable description of the impact policy.
    #[serde(rename = "description")]
    pub description: Option<String>,
    #[serde(rename = "intervals")]
    pub intervals: Option<Vec <crate::models::JobPolicyInterval>>,
    /// The name of the impact policy.
    #[serde(rename = "name")]
    pub name: String,
}