Class: TD::Types::MessageReplyInfo

Inherits:
Base
  • Object
show all
Defined in:
lib/tdlib/types/message_reply_info.rb

Overview

Contains information about replies to a message.

Instance Attribute Summary collapse

Method Summary

Methods inherited from Base

#to_hash, #to_json

Instance Attribute Details

#last_message_idInteger

Identifier of the last reply to the message.

Returns:

  • (Integer)

    the current value of last_message_id



11
12
13
# File 'lib/tdlib/types/message_reply_info.rb', line 11

def last_message_id
  @last_message_id
end

#last_read_inbox_message_idInteger

Identifier of the last read incoming reply to the message.

Returns:

  • (Integer)

    the current value of last_read_inbox_message_id



11
12
13
# File 'lib/tdlib/types/message_reply_info.rb', line 11

def last_read_inbox_message_id
  @last_read_inbox_message_id
end

#last_read_outbox_message_idInteger

Identifier of the last read outgoing reply to the message.

Returns:

  • (Integer)

    the current value of last_read_outbox_message_id



11
12
13
# File 'lib/tdlib/types/message_reply_info.rb', line 11

def last_read_outbox_message_id
  @last_read_outbox_message_id
end

#recent_replier_idsArray<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.

Returns:



11
12
13
# File 'lib/tdlib/types/message_reply_info.rb', line 11

def recent_replier_ids
  @recent_replier_ids
end

#reply_countInteger

Number of times the message was directly or indirectly replied.

Returns:

  • (Integer)

    the current value of reply_count



11
12
13
# File 'lib/tdlib/types/message_reply_info.rb', line 11

def reply_count
  @reply_count
end