1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
/// WormSettingsExtended : Specifies global SmartLock (WORM) settings.

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

#[derive(Debug, Serialize, Deserialize)]
pub struct WormSettingsExtended {
    /// To set the compliance clock to the current system time, PUT to this resource with an empty JSON object {} for the cdate value.  This cluster must be in compliance mode to set the compliance clock.
    #[serde(rename = "cdate")]
    pub cdate: Option <crate::models::Empty>,
}