use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct AttachmentArchiveImpl {
#[serde(rename = "entries", skip_serializing_if = "Option::is_none")]
pub entries: Option<Vec<models::AttachmentArchiveEntry>>,
#[serde(rename = "totalEntryCount", skip_serializing_if = "Option::is_none")]
pub total_entry_count: Option<i32>,
}
impl AttachmentArchiveImpl {
pub fn new() -> AttachmentArchiveImpl {
AttachmentArchiveImpl {
entries: None,
total_entry_count: None,
}
}
}