use crate::types::*;
use crate::errors::*;
use uuid::Uuid;
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct Chats {
#[doc(hidden)]
#[serde(rename(serialize = "@type", deserialize = "@type"))]
td_name: String,
#[doc(hidden)]
#[serde(rename(serialize = "@extra", deserialize = "@extra"))]
extra: Option<String>,
total_count: i64,
chat_ids: Vec<i64>,
}
impl RObject for Chats {
#[doc(hidden)] fn td_name(&self) -> &'static str { "chats" }
#[doc(hidden)] fn extra(&self) -> Option<String> { self.extra.clone() }
fn to_json(&self) -> RTDResult<String> { Ok(serde_json::to_string(self)?) }
}
impl Chats {
pub fn from_json<S: AsRef<str>>(json: S) -> RTDResult<Self> { Ok(serde_json::from_str(json.as_ref())?) }
pub fn builder() -> RTDChatsBuilder {
let mut inner = Chats::default();
inner.td_name = "chats".to_string();
inner.extra = Some(Uuid::new_v4().to_string());
RTDChatsBuilder { inner }
}
pub fn total_count(&self) -> i64 { self.total_count }
pub fn chat_ids(&self) -> &Vec<i64> { &self.chat_ids }
}
#[doc(hidden)]
pub struct RTDChatsBuilder {
inner: Chats
}
impl RTDChatsBuilder {
pub fn build(&self) -> Chats { self.inner.clone() }
pub fn total_count(&mut self, total_count: i64) -> &mut Self {
self.inner.total_count = total_count;
self
}
pub fn chat_ids(&mut self, chat_ids: Vec<i64>) -> &mut Self {
self.inner.chat_ids = chat_ids;
self
}
}
impl AsRef<Chats> for Chats {
fn as_ref(&self) -> &Chats { self }
}
impl AsRef<Chats> for RTDChatsBuilder {
fn as_ref(&self) -> &Chats { &self.inner }
}