1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct FixedSlotCapacity {
#[serde(default, rename = "resourceId", skip_serializing_if = "Option::is_none")]
pub resource_id: Option<String>,
#[serde(default, rename = "slotDuration", skip_serializing_if = "Option::is_none")]
pub slot_duration: Option<f32>,
#[serde(default, rename = "capacities", skip_serializing_if = "Option::is_none")]
pub capacities: Option<Vec<crate::models::FixedSlot>>,
#[serde(default, rename = "nextPageToken", skip_serializing_if = "Option::is_none")]
pub next_page_token: Option<String>,
}
impl FixedSlotCapacity {
pub fn new() -> FixedSlotCapacity {
FixedSlotCapacity {
resource_id: None,
slot_duration: None,
capacities: None,
next_page_token: None,
}
}
}