use crate::types::*;
use crate::errors::*;
use uuid::Uuid;
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct ChatPermissions {
#[doc(hidden)]
#[serde(rename(serialize = "@type", deserialize = "@type"))]
td_name: String,
#[doc(hidden)]
#[serde(rename(serialize = "@extra", deserialize = "@extra"))]
extra: Option<String>,
can_send_messages: bool,
can_send_media_messages: bool,
can_send_polls: bool,
can_send_other_messages: bool,
can_add_web_page_previews: bool,
can_change_info: bool,
can_invite_users: bool,
can_pin_messages: bool,
}
impl RObject for ChatPermissions {
#[doc(hidden)] fn td_name(&self) -> &'static str { "chatPermissions" }
#[doc(hidden)] fn extra(&self) -> Option<String> { self.extra.clone() }
fn to_json(&self) -> RTDResult<String> { Ok(serde_json::to_string(self)?) }
}
impl ChatPermissions {
pub fn from_json<S: AsRef<str>>(json: S) -> RTDResult<Self> { Ok(serde_json::from_str(json.as_ref())?) }
pub fn builder() -> RTDChatPermissionsBuilder {
let mut inner = ChatPermissions::default();
inner.td_name = "chatPermissions".to_string();
inner.extra = Some(Uuid::new_v4().to_string());
RTDChatPermissionsBuilder { inner }
}
pub fn can_send_messages(&self) -> bool { self.can_send_messages }
pub fn can_send_media_messages(&self) -> bool { self.can_send_media_messages }
pub fn can_send_polls(&self) -> bool { self.can_send_polls }
pub fn can_send_other_messages(&self) -> bool { self.can_send_other_messages }
pub fn can_add_web_page_previews(&self) -> bool { self.can_add_web_page_previews }
pub fn can_change_info(&self) -> bool { self.can_change_info }
pub fn can_invite_users(&self) -> bool { self.can_invite_users }
pub fn can_pin_messages(&self) -> bool { self.can_pin_messages }
}
#[doc(hidden)]
pub struct RTDChatPermissionsBuilder {
inner: ChatPermissions
}
impl RTDChatPermissionsBuilder {
pub fn build(&self) -> ChatPermissions { self.inner.clone() }
pub fn can_send_messages(&mut self, can_send_messages: bool) -> &mut Self {
self.inner.can_send_messages = can_send_messages;
self
}
pub fn can_send_media_messages(&mut self, can_send_media_messages: bool) -> &mut Self {
self.inner.can_send_media_messages = can_send_media_messages;
self
}
pub fn can_send_polls(&mut self, can_send_polls: bool) -> &mut Self {
self.inner.can_send_polls = can_send_polls;
self
}
pub fn can_send_other_messages(&mut self, can_send_other_messages: bool) -> &mut Self {
self.inner.can_send_other_messages = can_send_other_messages;
self
}
pub fn can_add_web_page_previews(&mut self, can_add_web_page_previews: bool) -> &mut Self {
self.inner.can_add_web_page_previews = can_add_web_page_previews;
self
}
pub fn can_change_info(&mut self, can_change_info: bool) -> &mut Self {
self.inner.can_change_info = can_change_info;
self
}
pub fn can_invite_users(&mut self, can_invite_users: bool) -> &mut Self {
self.inner.can_invite_users = can_invite_users;
self
}
pub fn can_pin_messages(&mut self, can_pin_messages: bool) -> &mut Self {
self.inner.can_pin_messages = can_pin_messages;
self
}
}
impl AsRef<ChatPermissions> for ChatPermissions {
fn as_ref(&self) -> &ChatPermissions { self }
}
impl AsRef<ChatPermissions> for RTDChatPermissionsBuilder {
fn as_ref(&self) -> &ChatPermissions { &self.inner }
}