isilon/models/node_status.rs
1#[allow(unused_imports)]
2use serde_json::Value;
3
4#[derive(Debug, Serialize, Deserialize)]
5pub struct NodeStatus {
6 /// A list of errors encountered by the individual nodes involved in this request, or an empty list if there were no errors.
7 #[serde(rename = "errors")]
8 pub errors: Option<Vec <crate::models::NodeDrivesPurposelistError>>,
9 /// The responses from the individual nodes involved in this request.
10 #[serde(rename = "nodes")]
11 pub nodes: Option<Vec <crate::models::NodeStatusNode>>,
12 /// The total number of nodes responding.
13 #[serde(rename = "total")]
14 pub total: Option<i32>,
15}