isilon/models/
changelist_lins.rs

1#[allow(unused_imports)]
2use serde_json::Value;
3
4#[derive(Debug, Serialize, Deserialize)]
5pub struct ChangelistLins {
6    ///
7    #[serde(rename = "atime")]
8    pub atime: Option <crate::models::ChangelistLinsCtime>,
9    ///
10    #[serde(rename = "ctime")]
11    pub ctime: Option <crate::models::ChangelistLinsCtime>,
12    /// The LIN number of the file associated with the entry.
13    #[serde(rename = "id")]
14    pub id: String,
15    ///
16    #[serde(rename = "mtime")]
17    pub mtime: Option <crate::models::ChangelistLinsCtime>,
18    /// The path to the file associated with the entry.
19    #[serde(rename = "path")]
20    pub path: String,
21    /// The size of the file associated with the entry.
22    #[serde(rename = "size")]
23    pub size: i32,
24    /// Type of file.
25    #[serde(rename = "type")]
26    pub _type: String,
27}