Sha256: 42d20cba0cb3415cafc435b0ce271103cac8ae2beecbe7726598c15abb765db3

Contents?: true

Size: 628 Bytes

Versions: 4

Compression:

Stored size: 628 Bytes

Contents

module TD::Types
  # Contains the storage usage statistics for a specific chat.
  #
  # @attr chat_id [Integer] Chat identifier; 0 if none.
  # @attr size [Integer] Total size of the files in the chat.
  # @attr count [Integer] Total number of files in the chat.
  # @attr by_file_type [Array<TD::Types::StorageStatisticsByFileType>] Statistics split by file types.
  class StorageStatisticsByChat < Base
    attribute :chat_id, TD::Types::Integer
    attribute :size, TD::Types::Integer
    attribute :count, TD::Types::Integer
    attribute :by_file_type, TD::Types::Array.of(TD::Types::StorageStatisticsByFileType)
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
tdlib-schema-1.7.0.1 lib/tdlib/types/storage_statistics_by_chat.rb
tdlib-ruby-2.2.0 lib/tdlib/types/storage_statistics_by_chat.rb
tdlib-ruby-2.1.0 lib/tdlib/types/storage_statistics_by_chat.rb
tdlib-ruby-2.0.0 lib/tdlib/types/storage_statistics_by_chat.rb