use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetInboxSourceBreakdown200ResponseSourcesInner {
#[serde(rename = "source", skip_serializing_if = "Option::is_none")]
pub source: Option<String>,
#[serde(rename = "received", skip_serializing_if = "Option::is_none")]
pub received: Option<i32>,
#[serde(rename = "sent", skip_serializing_if = "Option::is_none")]
pub sent: Option<i32>,
#[serde(rename = "read", skip_serializing_if = "Option::is_none")]
pub read: Option<i32>,
#[serde(rename = "byPlatform", skip_serializing_if = "Option::is_none")]
pub by_platform:
Option<Vec<models::GetInboxSourceBreakdown200ResponseSourcesInnerByPlatformInner>>,
}
impl GetInboxSourceBreakdown200ResponseSourcesInner {
pub fn new() -> GetInboxSourceBreakdown200ResponseSourcesInner {
GetInboxSourceBreakdown200ResponseSourcesInner {
source: None,
received: None,
sent: None,
read: None,
by_platform: None,
}
}
}