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_replier_ids ⇒ Array<TD::Types::MessageSender>
Identifiers of at most 3 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.
11 12 13 |
# File 'lib/tdlib/types/message_reply_info.rb', line 11 def @last_message_id end |
#last_read_inbox_message_id ⇒ Integer
Identifier of the last read incoming reply to the message.
11 12 13 |
# File 'lib/tdlib/types/message_reply_info.rb', line 11 def @last_read_inbox_message_id end |
#last_read_outbox_message_id ⇒ Integer
Identifier of the last read outgoing reply to the message.
11 12 13 |
# File 'lib/tdlib/types/message_reply_info.rb', line 11 def @last_read_outbox_message_id end |
#recent_replier_ids ⇒ Array<TD::Types::MessageSender>
Identifiers of at most 3 recent repliers to the message; available in channels with a discussion supergroup. The users and chats are expected to be inaccessible: only their photo and name will be available.
11 12 13 |
# File 'lib/tdlib/types/message_reply_info.rb', line 11 def recent_replier_ids @recent_replier_ids end |
#reply_count ⇒ Integer
Number of times the message was directly or indirectly replied.
11 12 13 |
# File 'lib/tdlib/types/message_reply_info.rb', line 11 def reply_count @reply_count end |