Documentation

use crate::types::*;
use crate::errors::*;
use uuid::Uuid;




/// Describes actions that a user is allowed to take in a chat
#[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>,
  /// True, if the user can send text messages, contacts, locations, and venues
  can_send_messages: bool,
  /// True, if the user can send audio files, documents, photos, videos, video notes, and voice notes. Implies can_send_messages permissions
  can_send_media_messages: bool,
  /// True, if the user can send polls. Implies can_send_messages permissions
  can_send_polls: bool,
  /// True, if the user can send animations, games, stickers, and dice and use inline bots. Implies can_send_messages permissions
  can_send_other_messages: bool,
  /// True, if the user may add a web page preview to their messages. Implies can_send_messages permissions
  can_add_web_page_previews: bool,
  /// True, if the user can change the chat title, photo, and other settings
  can_change_info: bool,
  /// True, if the user can invite new users to the chat
  can_invite_users: bool,
  /// True, if the user can pin messages
  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 }
}