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 ClusterFirmwareStatusNodePackageItem {
    /// Valid checksum string for binary. One of the following: 'ok', 'bad', 'file_missing', or 'na'
    #[serde(rename = "checksum")]
    pub checksum: Option<String>,
    /// The name of the firmware binary.
    #[serde(rename = "firmware")]
    pub firmware: Option<String>,
    /// The version string for the binary.
    #[serde(rename = "version")]
    pub version: Option<String>,
}