Class: TD::Types::AddedReaction
- Defined in:
- lib/tdlib/types/added_reaction.rb
Overview
Represents a reaction applied to a message.
Instance Attribute Summary collapse
-
#date ⇒ Integer
Point in time (Unix timestamp) when the reaction was added.
-
#is_outgoing ⇒ Boolean
True, if the reaction was added by the current user.
-
#sender_id ⇒ TD::Types::MessageSender
Identifier of the chat member, applied the reaction.
-
#type ⇒ TD::Types::ReactionType
Type of the reaction.
Method Summary
Methods inherited from Base
Instance Attribute Details
#date ⇒ Integer
Point in time (Unix timestamp) when the reaction was added.
8 9 10 |
# File 'lib/tdlib/types/added_reaction.rb', line 8 def date @date end |
#is_outgoing ⇒ Boolean
True, if the reaction was added by the current user.
8 9 10 |
# File 'lib/tdlib/types/added_reaction.rb', line 8 def is_outgoing @is_outgoing end |
#sender_id ⇒ TD::Types::MessageSender
Identifier of the chat member, applied the reaction.
8 9 10 |
# File 'lib/tdlib/types/added_reaction.rb', line 8 def sender_id @sender_id end |
#type ⇒ TD::Types::ReactionType
Type of the reaction.
8 9 10 |
# File 'lib/tdlib/types/added_reaction.rb', line 8 def type @type end |