#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct NotificationSchemeEvent {
#[serde(rename = "event", skip_serializing_if = "Option::is_none")]
pub event: Option<crate::models::NotificationEvent>,
#[serde(rename = "notifications", skip_serializing_if = "Option::is_none")]
pub notifications: Option<Vec<crate::models::EventNotification>>,
}
impl NotificationSchemeEvent {
pub fn new() -> NotificationSchemeEvent {
NotificationSchemeEvent {
event: None,
notifications: None,
}
}
}