Sha256: ed2019377225faee5e1c03ccd4dc86c2eb96df9121457d2e2c91a2c6d46a87e3
Contents?: true
Size: 620 Bytes
Versions: 3
Compression:
Stored size: 620 Bytes
Contents
module TD::Types # Number of unread messages in a chat list has changed. # This update is sent only if the message database is used. # # @attr chat_list [TD::Types::ChatList] The chat list with changed number of unread messages. # @attr unread_count [Integer] Total number of unread messages. # @attr unread_unmuted_count [Integer] Total number of unread messages in unmuted chats. class Update::UnreadMessageCount < Update attribute :chat_list, TD::Types::ChatList attribute :unread_count, TD::Types::Coercible::Integer attribute :unread_unmuted_count, TD::Types::Coercible::Integer end end
Version data entries
3 entries across 3 versions & 1 rubygems