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.
-
#reply_info ⇒ TD::Types::MessageReplyInfo?
Contains 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.
10 11 12 |
# File 'lib/tdlib/types/message_interaction_info.rb', line 10 def forward_count @forward_count end |
#reply_info ⇒ TD::Types::MessageReplyInfo?
Contains 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.
10 11 12 |
# File 'lib/tdlib/types/message_interaction_info.rb', line 10 def reply_info @reply_info end |
#view_count ⇒ Integer
Number of times the message was viewed.
10 11 12 |
# File 'lib/tdlib/types/message_interaction_info.rb', line 10 def view_count @view_count end |