#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct ApiPeriodV2010PeriodAccountPeriodNewKey {
#[serde(rename = "sid", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
pub sid: Option<Option<String>>,
#[serde(rename = "friendly_name", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
pub friendly_name: Option<Option<String>>,
#[serde(rename = "date_created", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
pub date_created: Option<Option<String>>,
#[serde(rename = "date_updated", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
pub date_updated: Option<Option<String>>,
#[serde(rename = "secret", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
pub secret: Option<Option<String>>,
}
impl ApiPeriodV2010PeriodAccountPeriodNewKey {
pub fn new() -> ApiPeriodV2010PeriodAccountPeriodNewKey {
ApiPeriodV2010PeriodAccountPeriodNewKey {
sid: None,
friendly_name: None,
date_created: None,
date_updated: None,
secret: None,
}
}
}