Skip to main content

opsgenie_rs/models/
list_heartbeat_response_all_of_data.rs

1/*
2 * Python SDK for Opsgenie REST API
3 *
4 * Python SDK for Opsgenie REST API
5 *
6 * The version of the OpenAPI document: 2.0.0
7 * Contact: support@opsgenie.com
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12
13
14#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
15pub struct ListHeartbeatResponseAllOfData {
16    #[serde(rename = "heartbeats", skip_serializing_if = "Option::is_none")]
17    pub heartbeats: Option<Vec<crate::models::Heartbeat>>,
18}
19
20impl ListHeartbeatResponseAllOfData {
21    pub fn new() -> ListHeartbeatResponseAllOfData {
22        ListHeartbeatResponseAllOfData {
23            heartbeats: None,
24        }
25    }
26}
27
28