1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
/// DrivesDriveFirmwareUpdateItem : Drive firmware update information.

#[allow(unused_imports)]
use serde_json::Value;

#[derive(Debug, Serialize, Deserialize)]
pub struct DrivesDriveFirmwareUpdateItem {
    /// Indicates whether this is a cluster wide drive firwmare update or not
    #[serde(rename = "cluster_wide")]
    pub cluster_wide: bool,
}