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