Sha256: faf0298356d95f3d4d76e43372fe6691cae5b4d518ca3edb6c8c0d71276eef6a
Contents?: true
Size: 487 Bytes
Versions: 4
Compression:
Stored size: 487 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::Integer attribute :count, TD::Types::Integer attribute :by_chat, TD::Types::Array.of(TD::Types::StorageStatisticsByChat) end end
Version data entries
4 entries across 4 versions & 2 rubygems