isilon/models/event_eventlists_extended.rs
1#[allow(unused_imports)]
2use serde_json::Value;
3
4#[derive(Debug, Serialize, Deserialize)]
5pub struct EventEventlistsExtended {
6 #[serde(rename = "eventlists")]
7 pub eventlists: Option<Vec <crate::models::EventEventlist>>,
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}