/*
* 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 AlertPaging {
#[serde(rename = "first", skip_serializing_if = "Option::is_none")]
pub first: Option<String>,
#[serde(rename = "next", skip_serializing_if = "Option::is_none")]
pub next: Option<String>,
}
impl AlertPaging {
pub fn new() -> AlertPaging {
AlertPaging {
first: None,
next: None,
}
}
}