use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct CreateCommentAutomation200ResponseAutomationStats {
#[serde(rename = "totalTriggered", skip_serializing_if = "Option::is_none")]
pub total_triggered: Option<i32>,
#[serde(rename = "totalSent", skip_serializing_if = "Option::is_none")]
pub total_sent: Option<i32>,
#[serde(rename = "totalFailed", skip_serializing_if = "Option::is_none")]
pub total_failed: Option<i32>,
}
impl CreateCommentAutomation200ResponseAutomationStats {
pub fn new() -> CreateCommentAutomation200ResponseAutomationStats {
CreateCommentAutomation200ResponseAutomationStats {
total_triggered: None,
total_sent: None,
total_failed: None,
}
}
}