use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct UpdateCommentAutomation200Response {
#[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::UpdateCommentAutomation200ResponseAutomation>>,
}
impl UpdateCommentAutomation200Response {
pub fn new() -> UpdateCommentAutomation200Response {
UpdateCommentAutomation200Response {
success: None,
automation: None,
}
}
}