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