use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct O11yPeriodPostableChannel {
#[serde(rename = "Receiver", skip_serializing_if = "Option::is_none")]
pub receiver: Option<Box<models::O11yPeriodReceiver>>,
#[serde(rename = "googlechat_configs", skip_serializing_if = "Option::is_none")]
pub googlechat_configs: Option<Vec<models::O11yPeriodGoogleChatReceiverConfig>>,
}
impl O11yPeriodPostableChannel {
pub fn new() -> O11yPeriodPostableChannel {
O11yPeriodPostableChannel {
receiver: None,
googlechat_configs: None,
}
}
}