Class: TD::Types::ScopeNotificationSettings

Inherits:
Base
  • Object
show all
Defined in:
lib/tdlib/types/scope_notification_settings.rb

Overview

Contains information about notification settings for several chats.

Instance Attribute Summary collapse

Method Summary

Methods inherited from Base

#to_hash, #to_json

Instance Attribute Details

#disable_mention_notificationsBoolean

True, if notifications for messages with mentions will be created as for an ordinary unread message.

Returns:

  • (Boolean)

    the current value of disable_mention_notifications



17
18
19
# File 'lib/tdlib/types/scope_notification_settings.rb', line 17

def disable_mention_notifications
  @disable_mention_notifications
end

#disable_pinned_message_notificationsBoolean

True, if notifications for incoming pinned messages will be created as for an ordinary unread message.

Returns:

  • (Boolean)

    the current value of disable_pinned_message_notifications



17
18
19
# File 'lib/tdlib/types/scope_notification_settings.rb', line 17

def disable_pinned_message_notifications
  @disable_pinned_message_notifications
end

#mute_forInteger

Time left before notifications will be unmuted, in seconds.

Returns:

  • (Integer)

    the current value of mute_for



17
18
19
# File 'lib/tdlib/types/scope_notification_settings.rb', line 17

def mute_for
  @mute_for
end

#mute_storiesBoolean

True, if story notifications are disabled.

Returns:

  • (Boolean)

    the current value of mute_stories



17
18
19
# File 'lib/tdlib/types/scope_notification_settings.rb', line 17

def mute_stories
  @mute_stories
end

#show_previewBoolean

True, if message content must be displayed in notifications.

Returns:

  • (Boolean)

    the current value of show_preview



17
18
19
# File 'lib/tdlib/types/scope_notification_settings.rb', line 17

def show_preview
  @show_preview
end

#show_story_senderBoolean

True, if the sender of stories must be displayed in notifications.

Returns:

  • (Boolean)

    the current value of show_story_sender



17
18
19
# File 'lib/tdlib/types/scope_notification_settings.rb', line 17

def show_story_sender
  @show_story_sender
end

#sound_idInteger

Identifier of the notification sound to be played; 0 if sound is disabled.

Returns:

  • (Integer)

    the current value of sound_id



17
18
19
# File 'lib/tdlib/types/scope_notification_settings.rb', line 17

def sound_id
  @sound_id
end

#story_sound_idInteger

Identifier of the notification sound to be played for stories; 0 if sound is disabled.

Returns:

  • (Integer)

    the current value of story_sound_id



17
18
19
# File 'lib/tdlib/types/scope_notification_settings.rb', line 17

def story_sound_id
  @story_sound_id
end

#use_default_mute_storiesBoolean

If true, story notifications are received only for the first 5 chats from TopChatCategory::Users regardless of the value of mute_stories.

Returns:

  • (Boolean)

    the current value of use_default_mute_stories



17
18
19
# File 'lib/tdlib/types/scope_notification_settings.rb', line 17

def use_default_mute_stories
  @use_default_mute_stories
end