Sha256: 97ccf570cd4e684e422682f7ad4897752b725a6e8c8c9b31357cc9321f0b1b9c
Contents?: true
Size: 400 Bytes
Versions: 2
Compression:
Stored size: 400 Bytes
Contents
module TD::Types # Contains a list of messages. # # @attr total_count [Integer] Approximate total count of messages found. # @attr messages [Array<TD::Types::Message>, nil] List of messages; messages may be null. class Messages < Base attribute :total_count, TD::Types::Coercible::Integer attribute :messages, TD::Types::Array.of(TD::Types::Message).optional.default(nil) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.3 | lib/tdlib/types/messages.rb |
tdlib-schema-1.7.0.2 | lib/tdlib/types/messages.rb |