Sha256: 1e3f170fa152b89b7166da9477c55504018d53b42672279c5eb4c31eb20b35f7
Contents?: true
Size: 553 Bytes
Versions: 2
Compression:
Stored size: 553 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 [TD::Types::String] The offset for the next request. # If empty, there are no more results. class FoundMessages < Base attribute :total_count, TD::Types::Coercible::Integer attribute :messages, TD::Types::Array.of(TD::Types::Message) attribute :next_offset, TD::Types::String end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.3 | lib/tdlib/types/found_messages.rb |
tdlib-schema-1.7.0.2 | lib/tdlib/types/found_messages.rb |