Sha256: 4c42b926f5cad1a2eacb6d7d26f692a831c6689fc52d1d4febfc5c957688027c
Contents?: true
Size: 776 Bytes
Versions: 2
Compression:
Stored size: 776 Bytes
Contents
module TD::Types # Number of unread chats, i.e. # with unread messages or marked as unread, has changed. # This update is sent only if a message database is used. # # @attr unread_count [Integer] Total number of unread chats. # @attr unread_unmuted_count [Integer] Total number of unread unmuted chats. # @attr marked_as_unread_count [Integer] Total number of chats marked as unread. # @attr marked_as_unread_unmuted_count [Integer] Total number of unmuted chats marked as unread. class Update::UnreadChatCount < Update attribute :unread_count, TD::Types::Integer attribute :unread_unmuted_count, TD::Types::Integer attribute :marked_as_unread_count, TD::Types::Integer attribute :marked_as_unread_unmuted_count, TD::Types::Integer end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tdlib-ruby-2.1.0 | lib/tdlib/types/update/unread_chat_count.rb |
tdlib-ruby-2.0.0 | lib/tdlib/types/update/unread_chat_count.rb |