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
/*
 * Phone and Queue Backend
 *
 * API for managing phone services  This is the API of the service at P7M that manages phone services.  **Attention:** this API will probably still change a lot in the future, it's not at all stable yet
 *
 * The version of the OpenAPI document: 0.5.0
 * Contact: tech@p7m.de
 * Generated by: https://openapi-generator.tech
 */




#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct AlarmCallData {
    #[serde(rename = "data")]
    pub data: Vec<crate::models::AlarmCall>,
}

impl AlarmCallData {
    pub fn new(data: Vec<crate::models::AlarmCall>) -> AlarmCallData {
        AlarmCallData {
            data,
        }
    }
}