Sha256: a73a8b8fdb16b28109ced54b0ebf0faa11e80f4c2a478c9ecaf700eae702fbc6

Contents?: true

Size: 1001 Bytes

Versions: 2

Compression:

Stored size: 1001 Bytes

Contents

module TD::Types
  # Contains information about replies to a message.
  #
  # @attr reply_count [Integer] Number of times the message was directly or indirectly replied.
  # @attr recent_repliers [Array<TD::Types::MessageSender>] Recent repliers to the message; available in channels with
  #   a discussion supergroup.
  # @attr last_read_inbox_message_id [Integer] Identifier of the last read incoming reply to the message.
  # @attr last_read_outbox_message_id [Integer] Identifier of the last read outgoing reply to the message.
  # @attr last_message_id [Integer] Identifier of the last reply to the message.
  class MessageReplyInfo < Base
    attribute :reply_count, TD::Types::Coercible::Integer
    attribute :recent_repliers, TD::Types::Array.of(TD::Types::MessageSender)
    attribute :last_read_inbox_message_id, TD::Types::Coercible::Integer
    attribute :last_read_outbox_message_id, TD::Types::Coercible::Integer
    attribute :last_message_id, TD::Types::Coercible::Integer
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tdlib-schema-1.7.0.3 lib/tdlib/types/message_reply_info.rb
tdlib-schema-1.7.0.2 lib/tdlib/types/message_reply_info.rb