1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
/// SyncReportsRotate : Force rotation of reports.

#[allow(unused_imports)]
use serde_json::Value;

#[derive(Debug, Serialize, Deserialize)]
pub struct SyncReportsRotate {
    /// A message about the status of the task.
    #[serde(rename = "message")]
    pub message: String,
    /// Whether this task is running or not.
    #[serde(rename = "running")]
    pub running: bool,
}