Interface StorageStatisticsByFileType

Contains the storage usage statistics for a specific file type.

interface StorageStatisticsByFileType {
    @type: "storageStatisticsByFileType";
    count: number;
    file_type: FileType;
    size: number;
}

Properties

@type: "storageStatisticsByFileType"
count: number

Total number of files.

file_type: FileType

File type.

size: number

Total size of the files, in bytes.