use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetThresholdAlert200Response {
#[serde(rename = "threshold_alert_amount", skip_serializing_if = "Option::is_none")]
pub threshold_alert_amount: Option<f64>,
#[serde(rename = "last_alert_sent", skip_serializing_if = "Option::is_none")]
pub last_alert_sent: Option<String>,
}
impl GetThresholdAlert200Response {
pub fn new() -> GetThresholdAlert200Response {
GetThresholdAlert200Response {
threshold_alert_amount: None,
last_alert_sent: None,
}
}
}