isilon 5.0.1

Isilon rest api bindings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[allow(unused_imports)]
use serde_json::Value;

#[derive(Debug, Serialize, Deserialize)]
pub struct ReportAboutReport {
    /// Whether report was manually requested (live) or scheduled.
    #[serde(rename = "generated")]
    pub generated: String,
    /// The system ID given to the report.
    #[serde(rename = "id")]
    pub id: String,
    /// Unix epoch time the report was taken.
    #[serde(rename = "time")]
    pub time: i32,
    /// Whether this is a summary or detail report.
    #[serde(rename = "type")]
    pub _type: String,
}