isilon/models/statistics_keys_extended.rs
1#[allow(unused_imports)]
2use serde_json::Value;
3
4#[derive(Debug, Serialize, Deserialize)]
5pub struct StatisticsKeysExtended {
6 #[serde(rename = "keys")]
7 pub keys: Option<Vec <crate::models::StatisticsKey>>,
8 /// Continue returning results from previous call using this token (token should come from the previous call, resume cannot be used with other options).
9 #[serde(rename = "resume")]
10 pub resume: Option<String>,
11 /// Total number of items available.
12 #[serde(rename = "total")]
13 pub total: Option<i32>,
14}