Sha256: f67c3b26c4986a69b1634a74f035b56a0b946ac635eb7bd2efeff6416e62946e
Contents?: true
Size: 509 Bytes
Versions: 2
Compression:
Stored size: 509 Bytes
Contents
module TD::Types # Contains the exact storage usage statistics split by chats and file type. # # @attr size [Integer] Total size of files. # @attr count [Integer] Total number of files. # @attr by_chat [Array<TD::Types::StorageStatisticsByChat>] Statistics split by chats. class StorageStatistics < Base attribute :size, TD::Types::Coercible::Integer attribute :count, TD::Types::Coercible::Integer attribute :by_chat, TD::Types::Array.of(TD::Types::StorageStatisticsByChat) 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.rb |
tdlib-schema-1.7.0.2 | lib/tdlib/types/storage_statistics.rb |