Class: TD::Types::MessageInteractionInfo
- Defined in:
- lib/tdlib/types/message_interaction_info.rb
Overview
Contains information about interactions with a message.
Instance Attribute Summary collapse
-
#forward_count ⇒ Integer
Number of times the message was forwarded.
-
#reactions ⇒ TD::Types::MessageReactions?
The list of reactions or tags added to the message; may be null.
-
#reply_info ⇒ TD::Types::MessageReplyInfo?
Information about direct or indirect replies to the message; may be null.
-
#view_count ⇒ Integer
Number of times the message was viewed.
Method Summary
Methods inherited from Base
Instance Attribute Details
#forward_count ⇒ Integer
Number of times the message was forwarded.
11 12 13 |
# File 'lib/tdlib/types/message_interaction_info.rb', line 11 def forward_count @forward_count end |
#reactions ⇒ TD::Types::MessageReactions?
The list of reactions or tags added to the message; may be null.
11 12 13 |
# File 'lib/tdlib/types/message_interaction_info.rb', line 11 def reactions @reactions end |
#reply_info ⇒ TD::Types::MessageReplyInfo?
Information about direct or indirect replies to the message; may be null. Currently, available only in channels with a discussion supergroup and discussion supergroups for messages, which are not replies itself.
11 12 13 |
# File 'lib/tdlib/types/message_interaction_info.rb', line 11 def reply_info @reply_info end |
#view_count ⇒ Integer
Number of times the message was viewed.
11 12 13 |
# File 'lib/tdlib/types/message_interaction_info.rb', line 11 def view_count @view_count end |