use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct O11yPeriodO11yErrorGettableIssue {
#[serde(rename = "issue", skip_serializing_if = "Option::is_none")]
pub issue: Option<Box<models::O11yPeriodO11yErrorIssue>>,
#[serde(rename = "latestEvent", skip_serializing_if = "Option::is_none")]
pub latest_event: Option<Box<models::O11yPeriodO11yOccurrence>>,
}
impl O11yPeriodO11yErrorGettableIssue {
pub fn new() -> O11yPeriodO11yErrorGettableIssue {
O11yPeriodO11yErrorGettableIssue {
issue: None,
latest_event: None,
}
}
}