isilon/models/
snapshot_lock_create_params.rs

1#[allow(unused_imports)]
2use serde_json::Value;
3
4#[derive(Debug, Serialize, Deserialize)]
5pub struct SnapshotLockCreateParams {
6    /// The Unix Epoch time the snapshot lock will expire and be eligible for automatic deletion.
7    #[serde(rename = "expires")]
8    pub expires: Option<i32>,
9    /// Free form comment.
10    #[serde(rename = "comment")]
11    pub comment: Option<String>,
12}