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

#[derive(Debug, Serialize, Deserialize)]
pub struct StoragepoolStatusUnhealthyItemAffectedItem {
    ///
    #[serde(rename = "device")]
    pub device: Option <crate::models::StoragepoolStatusUnprovisionedItem>,
    /// Whether or not the device is currently down.
    #[serde(rename = "down")]
    pub down: bool,
    /// Whether or not the device is currently being repaired.
    #[serde(rename = "restriping")]
    pub restriping: bool,
    /// Whether or not the device is currently smartfailed.
    #[serde(rename = "smartfailed")]
    pub smartfailed: bool,
    /// The type of affected device.
    #[serde(rename = "type")]
    pub _type: String,
}