Class: TD::Types::MessageReplyInfo
- Defined in:
- lib/tdlib/types/message_reply_info.rb
Overview
Contains information about replies to a message.
Instance Attribute Summary collapse
-
#last_message_id ⇒ Integer
Identifier of the last reply to the message.
-
#last_read_inbox_message_id ⇒ Integer
Identifier of the last read incoming reply to the message.
-
#last_read_outbox_message_id ⇒ Integer
Identifier of the last read outgoing reply to the message.
-
#recent_repliers ⇒ Array<TD::Types::MessageSender>
Recent repliers to the message; available in channels with a discussion supergroup.
-
#reply_count ⇒ Integer
Number of times the message was directly or indirectly replied.
Method Summary
Methods inherited from Base
Instance Attribute Details
#last_message_id ⇒ Integer
Identifier of the last reply to the message.
10 11 12 |
# File 'lib/tdlib/types/message_reply_info.rb', line 10 def @last_message_id end |
#last_read_inbox_message_id ⇒ Integer
Identifier of the last read incoming reply to the message.
10 11 12 |
# File 'lib/tdlib/types/message_reply_info.rb', line 10 def @last_read_inbox_message_id end |
#last_read_outbox_message_id ⇒ Integer
Identifier of the last read outgoing reply to the message.
10 11 12 |
# File 'lib/tdlib/types/message_reply_info.rb', line 10 def @last_read_outbox_message_id end |
#recent_repliers ⇒ Array<TD::Types::MessageSender>
Recent repliers to the message; available in channels with a discussion supergroup.
10 11 12 |
# File 'lib/tdlib/types/message_reply_info.rb', line 10 def recent_repliers @recent_repliers end |
#reply_count ⇒ Integer
Number of times the message was directly or indirectly replied.
10 11 12 |
# File 'lib/tdlib/types/message_reply_info.rb', line 10 def reply_count @reply_count end |