/*
* Python SDK for Opsgenie REST API
*
* Python SDK for Opsgenie REST API
*
* The version of the OpenAPI document: 2.0.0
* Contact: support@opsgenie.com
* Generated by: https://openapi-generator.tech
*/
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct ListIncidentsResponseAllOf {
#[serde(rename = "data", skip_serializing_if = "Option::is_none")]
pub data: Option<Vec<crate::models::BaseIncident>>,
#[serde(rename = "paging", skip_serializing_if = "Option::is_none")]
pub paging: Option<crate::models::PageDetails>,
}
impl ListIncidentsResponseAllOf {
pub fn new() -> ListIncidentsResponseAllOf {
ListIncidentsResponseAllOf {
data: None,
paging: None,
}
}
}