Sha256: 8f9986b112ad3b2bee787f12989b653244fcafa57d2d3e76a30b582f8b644e47
Contents?: true
Size: 730 Bytes
Versions: 3
Compression:
Stored size: 730 Bytes
Contents
module TD::Types # Contains approximate storage usage statistics, excluding files of unknown file type. # # @attr files_size [Integer] Approximate total size of files. # @attr file_count [Integer] Approximate number of files. # @attr database_size [Integer] Size of the database. # @attr language_pack_database_size [Integer] Size of the language pack database. # @attr log_size [Integer] Size of the TDLib internal log. class StorageStatisticsFast < Base attribute :files_size, TD::Types::Integer attribute :file_count, TD::Types::Integer attribute :database_size, TD::Types::Integer attribute :language_pack_database_size, TD::Types::Integer attribute :log_size, TD::Types::Integer end end
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.1 | lib/tdlib/types/storage_statistics_fast.rb |
tdlib-ruby-2.2.0 | lib/tdlib/types/storage_statistics_fast.rb |
tdlib-ruby-2.1.0 | lib/tdlib/types/storage_statistics_fast.rb |