Sha256: d9bc1c3d02aef2f7e05db451e5c4a7dec986764c258aaebac25e91662e9b1e9c
Contents?: true
Size: 785 Bytes
Versions: 2
Compression:
Stored size: 785 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::Coercible::Integer attribute :file_count, TD::Types::Coercible::Integer attribute :database_size, TD::Types::Coercible::Integer attribute :language_pack_database_size, TD::Types::Coercible::Integer attribute :log_size, TD::Types::Coercible::Integer end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tdlib-schema-1.7.0.3 | lib/tdlib/types/storage_statistics_fast.rb |
tdlib-schema-1.7.0.2 | lib/tdlib/types/storage_statistics_fast.rb |