isilon/models/summary_protocol_stats_protocol_stats_protocol_data_item.rs
1#[allow(unused_imports)]
2use serde_json::Value;
3
4#[derive(Debug, Serialize, Deserialize)]
5pub struct SummaryProtocolStatsProtocolStatsProtocolDataItem {
6 /// The name of the protocol operation.
7 #[serde(rename = "name")]
8 pub name: String,
9 /// Protocol specific operations per second. This is a variable number of output fields depending on the protocol being displayed.
10 #[serde(rename = "value")]
11 pub value: Value,
12}