Sha256: 2f274e807126d6385973a2c7662d4c0f0470745f1318311b5b07715ca4e74b78
Contents?: true
Size: 389 Bytes
Versions: 4
Compression:
Stored size: 389 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::Integer attribute :messages, TD::Types::Array.of(TD::Types::Message).optional.default(nil) end end
Version data entries
4 entries across 4 versions & 2 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.1 | lib/tdlib/types/messages.rb |
tdlib-ruby-2.2.0 | lib/tdlib/types/messages.rb |
tdlib-ruby-2.1.0 | lib/tdlib/types/messages.rb |
tdlib-ruby-2.0.0 | lib/tdlib/types/messages.rb |