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



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

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



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

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



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

def last_read_outbox_message_id
  @last_read_outbox_message_id
end

#recent_repliersArray<TD::Types::MessageSender>

Recent repliers to the message; available in channels with a discussion supergroup.

Returns:



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

def recent_repliers
  @recent_repliers
end

#reply_countInteger

Number of times the message was directly or indirectly replied.

Returns:

  • (Integer)

    the current value of reply_count



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

def reply_count
  @reply_count
end