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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159

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




/// Contains information about notification settings for a chat
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct ChatNotificationSettings {
  #[doc(hidden)]
  #[serde(rename(serialize = "@type", deserialize = "@type"))]
  td_name: String,
  #[doc(hidden)]
  #[serde(rename(serialize = "@extra", deserialize = "@extra"))]
  extra: Option<String>,
  /// If true, mute_for is ignored and the value for the relevant type of chat is used instead
  use_default_mute_for: bool,
  /// Time left before notifications will be unmuted, in seconds
  mute_for: i64,
  /// If true, sound is ignored and the value for the relevant type of chat is used instead
  use_default_sound: bool,
  /// The name of an audio file to be used for notification sounds; only applies to iOS applications
  sound: String,
  /// If true, show_preview is ignored and the value for the relevant type of chat is used instead
  use_default_show_preview: bool,
  /// True, if message content should be displayed in notifications
  show_preview: bool,
  /// If true, disable_pinned_message_notifications is ignored and the value for the relevant type of chat is used instead
  use_default_disable_pinned_message_notifications: bool,
  /// If true, notifications for incoming pinned messages will be created as for an ordinary unread message
  disable_pinned_message_notifications: bool,
  /// If true, disable_mention_notifications is ignored and the value for the relevant type of chat is used instead
  use_default_disable_mention_notifications: bool,
  /// If true, notifications for messages with mentions will be created as for an ordinary unread message
  disable_mention_notifications: bool,
  
}

impl RObject for ChatNotificationSettings {
  #[doc(hidden)] fn td_name(&self) -> &'static str { "chatNotificationSettings" }
  #[doc(hidden)] fn extra(&self) -> Option<String> { self.extra.clone() }
  fn to_json(&self) -> RTDResult<String> { Ok(serde_json::to_string(self)?) }
}



impl ChatNotificationSettings {
  pub fn from_json<S: AsRef<str>>(json: S) -> RTDResult<Self> { Ok(serde_json::from_str(json.as_ref())?) }
  pub fn builder() -> RTDChatNotificationSettingsBuilder {
    let mut inner = ChatNotificationSettings::default();
    inner.td_name = "chatNotificationSettings".to_string();
    inner.extra = Some(Uuid::new_v4().to_string());
    RTDChatNotificationSettingsBuilder { inner }
  }

  pub fn use_default_mute_for(&self) -> bool { self.use_default_mute_for }

  pub fn mute_for(&self) -> i64 { self.mute_for }

  pub fn use_default_sound(&self) -> bool { self.use_default_sound }

  pub fn sound(&self) -> &String { &self.sound }

  pub fn use_default_show_preview(&self) -> bool { self.use_default_show_preview }

  pub fn show_preview(&self) -> bool { self.show_preview }

  pub fn use_default_disable_pinned_message_notifications(&self) -> bool { self.use_default_disable_pinned_message_notifications }

  pub fn disable_pinned_message_notifications(&self) -> bool { self.disable_pinned_message_notifications }

  pub fn use_default_disable_mention_notifications(&self) -> bool { self.use_default_disable_mention_notifications }

  pub fn disable_mention_notifications(&self) -> bool { self.disable_mention_notifications }

}

#[doc(hidden)]
pub struct RTDChatNotificationSettingsBuilder {
  inner: ChatNotificationSettings
}

impl RTDChatNotificationSettingsBuilder {
  pub fn build(&self) -> ChatNotificationSettings { self.inner.clone() }

   
  pub fn use_default_mute_for(&mut self, use_default_mute_for: bool) -> &mut Self {
    self.inner.use_default_mute_for = use_default_mute_for;
    self
  }

   
  pub fn mute_for(&mut self, mute_for: i64) -> &mut Self {
    self.inner.mute_for = mute_for;
    self
  }

   
  pub fn use_default_sound(&mut self, use_default_sound: bool) -> &mut Self {
    self.inner.use_default_sound = use_default_sound;
    self
  }

   
  pub fn sound<T: AsRef<str>>(&mut self, sound: T) -> &mut Self {
    self.inner.sound = sound.as_ref().to_string();
    self
  }

   
  pub fn use_default_show_preview(&mut self, use_default_show_preview: bool) -> &mut Self {
    self.inner.use_default_show_preview = use_default_show_preview;
    self
  }

   
  pub fn show_preview(&mut self, show_preview: bool) -> &mut Self {
    self.inner.show_preview = show_preview;
    self
  }

   
  pub fn use_default_disable_pinned_message_notifications(&mut self, use_default_disable_pinned_message_notifications: bool) -> &mut Self {
    self.inner.use_default_disable_pinned_message_notifications = use_default_disable_pinned_message_notifications;
    self
  }

   
  pub fn disable_pinned_message_notifications(&mut self, disable_pinned_message_notifications: bool) -> &mut Self {
    self.inner.disable_pinned_message_notifications = disable_pinned_message_notifications;
    self
  }

   
  pub fn use_default_disable_mention_notifications(&mut self, use_default_disable_mention_notifications: bool) -> &mut Self {
    self.inner.use_default_disable_mention_notifications = use_default_disable_mention_notifications;
    self
  }

   
  pub fn disable_mention_notifications(&mut self, disable_mention_notifications: bool) -> &mut Self {
    self.inner.disable_mention_notifications = disable_mention_notifications;
    self
  }

}

impl AsRef<ChatNotificationSettings> for ChatNotificationSettings {
  fn as_ref(&self) -> &ChatNotificationSettings { self }
}

impl AsRef<ChatNotificationSettings> for RTDChatNotificationSettingsBuilder {
  fn as_ref(&self) -> &ChatNotificationSettings { &self.inner }
}