Sha256: 078e6e5f7b1c98d2af5e827ace0be5635601c6f7bf80c5d3d80b1572b9086bd8

Contents?: true

Size: 531 Bytes

Versions: 1

Compression:

Stored size: 531 Bytes

Contents

module TD::Types
  # Contains a list of messages found by a search.
  #
  # @attr total_count [Integer] Approximate total count of messages found; -1 if unknown.
  # @attr messages [Array<TD::Types::Message>] List of messages.
  # @attr next_offset [String] The offset for the next request.
  #   If empty, there are no more results.
  class FoundMessages < Base
    attribute :total_count, TD::Types::Integer
    attribute :messages, TD::Types::Array.of(TD::Types::Message)
    attribute :next_offset, TD::Types::String
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tdlib-schema-1.7.0.1 lib/tdlib/types/found_messages.rb