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 NodeStatusNodeCapacityItem {
    /// Total device storage bytes.
    #[serde(rename = "bytes")]
    pub bytes: Option<u64>,
    /// Total device count.
    #[serde(rename = "count")]
    pub count: Option<i32>,
    /// Device type.
    #[serde(rename = "type")]
    pub _type: Option<String>,
}