1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139

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, and stickers 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 }
}