Class: TD::Types::Update::MessageReactions
- Inherits:
-
TD::Types::Update
- Object
- Dry::Struct
- Base
- TD::Types::Update
- TD::Types::Update::MessageReactions
- Defined in:
- lib/tdlib/types/update/message_reactions.rb
Overview
Reactions added to a message with anonymous reactions have changed; for bots only.
Instance Attribute Summary collapse
-
#chat_id ⇒ Integer
Chat identifier.
-
#date ⇒ Integer
Point in time (Unix timestamp) when the reactions were changed.
-
#message_id ⇒ Integer
Message identifier.
-
#reactions ⇒ Array<TD::Types::MessageReaction>
The list of reactions added to the message.
Method Summary
Methods inherited from Base
Instance Attribute Details
#chat_id ⇒ Integer
Chat identifier.
8 9 10 |
# File 'lib/tdlib/types/update/message_reactions.rb', line 8 def chat_id @chat_id end |
#date ⇒ Integer
Point in time (Unix timestamp) when the reactions were changed.
8 9 10 |
# File 'lib/tdlib/types/update/message_reactions.rb', line 8 def date @date end |
#message_id ⇒ Integer
Message identifier.
8 9 10 |
# File 'lib/tdlib/types/update/message_reactions.rb', line 8 def @message_id end |
#reactions ⇒ Array<TD::Types::MessageReaction>
The list of reactions added to the message.
8 9 10 |
# File 'lib/tdlib/types/update/message_reactions.rb', line 8 def reactions @reactions end |