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 NodeStatusNodeNvramBattery {
    /// The current status color of the NVRAM battery.
    #[serde(rename = "color")]
    pub color: Option<String>,
    /// Identifying index for the NVRAM battery.
    #[serde(rename = "id")]
    pub id: Option<i32>,
    /// The current status message of the NVRAM battery.
    #[serde(rename = "status")]
    pub status: Option<String>,
    /// The current voltage of the NVRAM battery.
    #[serde(rename = "voltage")]
    pub voltage: Option<String>,
}