clientapi_pve/models/
nodes_disks_smart_response_data.rs1use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct NodesDisksSmartResponseData {
16
17 #[serde(rename = "attributes", skip_serializing_if = "Option::is_none")]
18 pub attributes: Option<Vec<serde_json::Value>>,
19
20 #[serde(rename = "health")]
21 pub health: String,
22
23 #[serde(rename = "text", skip_serializing_if = "Option::is_none")]
24 pub text: Option<String>,
25
26 #[serde(rename = "type", skip_serializing_if = "Option::is_none")]
27 pub r#type: Option<String>,
28
29
30}
31
32impl NodesDisksSmartResponseData {
33 pub fn new(health: String) -> NodesDisksSmartResponseData {
34 NodesDisksSmartResponseData {
35
36 attributes: None,
37
38 health,
39
40 text: None,
41
42 r#type: None,
43
44 }
45 }
46}
47
48