isilon/models/
snapshot_alias_extended.rs

1#[allow(unused_imports)]
2use serde_json::Value;
3
4#[derive(Debug, Serialize, Deserialize)]
5pub struct SnapshotAliasExtended {
6    /// The Unix Epoch time the snapshot alias was created.
7    #[serde(rename = "created")]
8    pub created: i32,
9    /// The system ID given to the snapshot alias.
10    #[serde(rename = "id")]
11    pub id: i32,
12    /// The user or system supplied snapshot alias name.
13    #[serde(rename = "name")]
14    pub name: String,
15    /// The ID of the snapshot pointed to.
16    #[serde(rename = "target_id")]
17    pub target_id: i32,
18    /// The name of the snapshot pointed to.
19    #[serde(rename = "target_name")]
20    pub target_name: String,
21}