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

#[derive(Debug, Serialize, Deserialize)]
pub struct HardwareFcportsNodeFcport {
    /// The unique display id
    #[serde(rename = "id")]
    pub id: Option<String>,
    /// Port ID
    #[serde(rename = "port")]
    pub port: Option<String>,
    #[serde(rename = "rate")]
    pub rate: Option<String>,
    /// State of the port
    #[serde(rename = "state")]
    pub state: Option<String>,
    #[serde(rename = "topology")]
    pub topology: Option<String>,
    /// World wide node name of the port
    #[serde(rename = "wwnn")]
    pub wwnn: Option<String>,
    /// World wide port name of the port
    #[serde(rename = "wwpn")]
    pub wwpn: Option<String>,
}