/*
* 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 GetIncidentResponse {
#[serde(rename = "requestId")]
pub request_id: String,
#[serde(rename = "took")]
pub took: f32,
#[serde(rename = "data", skip_serializing_if = "Option::is_none")]
pub data: Option<crate::models::Incident>,
}
impl GetIncidentResponse {
pub fn new(request_id: String, took: f32) -> GetIncidentResponse {
GetIncidentResponse {
request_id,
took,
data: None,
}
}
}