isilon/models/
sync_reports_extended.rs

1#[allow(unused_imports)]
2use serde_json::Value;
3
4#[derive(Debug, Serialize, Deserialize)]
5pub struct SyncReportsExtended {
6    #[serde(rename = "reports")]
7    pub reports: Option<Vec <crate::models::SyncReport>>,
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}