Class: TD::Types::StorageStatisticsFast
- Defined in:
- lib/tdlib/types/storage_statistics_fast.rb
Overview
Contains approximate storage usage statistics, excluding files of unknown file type.
Instance Attribute Summary collapse
-
#database_size ⇒ Integer
Size of the database.
-
#file_count ⇒ Integer
Approximate number of files.
-
#files_size ⇒ Integer
Approximate total size of files, in bytes.
-
#language_pack_database_size ⇒ Integer
Size of the language pack database.
-
#log_size ⇒ Integer
Size of the TDLib internal log.
Method Summary
Methods inherited from Base
Instance Attribute Details
#database_size ⇒ Integer
Size of the database.
9 10 11 |
# File 'lib/tdlib/types/storage_statistics_fast.rb', line 9 def database_size @database_size end |
#file_count ⇒ Integer
Approximate number of files.
9 10 11 |
# File 'lib/tdlib/types/storage_statistics_fast.rb', line 9 def file_count @file_count end |
#files_size ⇒ Integer
Approximate total size of files, in bytes.
9 10 11 |
# File 'lib/tdlib/types/storage_statistics_fast.rb', line 9 def files_size @files_size end |
#language_pack_database_size ⇒ Integer
Size of the language pack database.
9 10 11 |
# File 'lib/tdlib/types/storage_statistics_fast.rb', line 9 def language_pack_database_size @language_pack_database_size end |
#log_size ⇒ Integer
Size of the TDLib internal log.
9 10 11 |
# File 'lib/tdlib/types/storage_statistics_fast.rb', line 9 def log_size @log_size end |