#[allow(unused_imports)]
use serde_json::Value;
#[derive(Debug, Serialize, Deserialize)]
pub struct QuotaNotification {
#[serde(rename = "action_alert")]
pub action_alert: Option<bool>,
#[serde(rename = "action_email_address")]
pub action_email_address: Option<String>,
#[serde(rename = "action_email_owner")]
pub action_email_owner: Option<bool>,
#[serde(rename = "email_template")]
pub email_template: Option<String>,
#[serde(rename = "holdoff")]
pub holdoff: Option<i32>,
#[serde(rename = "schedule")]
pub schedule: Option<String>,
}