use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ListCommentAutomations200Response {
#[serde(rename = "success", skip_serializing_if = "Option::is_none")]
pub success: Option<bool>,
#[serde(rename = "automations", skip_serializing_if = "Option::is_none")]
pub automations: Option<Vec<models::ListCommentAutomations200ResponseAutomationsInner>>,
}
impl ListCommentAutomations200Response {
pub fn new() -> ListCommentAutomations200Response {
ListCommentAutomations200Response {
success: None,
automations: None,
}
}
}