1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#[allow(unused_imports)]
use serde_json::Value;

#[derive(Debug, Serialize, Deserialize)]
pub struct ClusterVersion {
    /// A list of errors encountered by the individual nodes involved in this request, or an empty list if there were no errors.
    #[serde(rename = "errors")]
    pub errors: Option<Vec <crate::models::NodeDrivesPurposelistError>>,
    /// The responses from the individual nodes involved in this request.
    #[serde(rename = "nodes")]
    pub nodes: Option<Vec <crate::models::ClusterVersionNode>>,
    /// The total number of nodes responding.
    #[serde(rename = "total")]
    pub total: Option<i32>,
}