twilio_openapi/models/
api_period_v2010_period_account_period_signing_key.rs

1/*
2 * Twilio - Api
3 *
4 * This is the public Twilio REST API.
5 *
6 * The version of the OpenAPI document: 1.37.3
7 * Contact: support@twilio.com
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12
13
14#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
15pub struct ApiPeriodV2010PeriodAccountPeriodSigningKey {
16    #[serde(rename = "sid", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
17    pub sid: Option<Option<String>>,
18    #[serde(rename = "friendly_name", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
19    pub friendly_name: Option<Option<String>>,
20    #[serde(rename = "date_created", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
21    pub date_created: Option<Option<String>>,
22    #[serde(rename = "date_updated", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
23    pub date_updated: Option<Option<String>>,
24}
25
26impl ApiPeriodV2010PeriodAccountPeriodSigningKey {
27    pub fn new() -> ApiPeriodV2010PeriodAccountPeriodSigningKey {
28        ApiPeriodV2010PeriodAccountPeriodSigningKey {
29            sid: None,
30            friendly_name: None,
31            date_created: None,
32            date_updated: None,
33        }
34    }
35}
36
37