Class: TD::Types::Update::MessageUnreadReactions
- Inherits:
-
TD::Types::Update
- Object
- Dry::Struct
- Base
- TD::Types::Update
- TD::Types::Update::MessageUnreadReactions
- Defined in:
- lib/tdlib/types/update/message_unread_reactions.rb
Overview
The list of unread reactions added to a message was changed.
Instance Attribute Summary collapse
-
#chat_id ⇒ Integer
Chat identifier.
-
#message_id ⇒ Integer
Message identifier.
-
#unread_reaction_count ⇒ Integer
The new number of messages with unread reactions left in the chat.
-
#unread_reactions ⇒ Array<TD::Types::UnreadReaction>
The new list of unread reactions.
Method Summary
Methods inherited from Base
Instance Attribute Details
#chat_id ⇒ Integer
Chat identifier.
8 9 10 |
# File 'lib/tdlib/types/update/message_unread_reactions.rb', line 8 def chat_id @chat_id end |
#message_id ⇒ Integer
Message identifier.
8 9 10 |
# File 'lib/tdlib/types/update/message_unread_reactions.rb', line 8 def @message_id end |
#unread_reaction_count ⇒ Integer
The new number of messages with unread reactions left in the chat.
8 9 10 |
# File 'lib/tdlib/types/update/message_unread_reactions.rb', line 8 def unread_reaction_count @unread_reaction_count end |
#unread_reactions ⇒ Array<TD::Types::UnreadReaction>
The new list of unread reactions.
8 9 10 |
# File 'lib/tdlib/types/update/message_unread_reactions.rb', line 8 def unread_reactions @unread_reactions end |