Interface StorageStatistics

Contains the exact storage usage statistics split by chats and file type.

interface StorageStatistics {
    @type: "storageStatistics";
    by_chat: StorageStatisticsByChat[];
    count: number;
    size: number;
}

Properties

Properties

@type: "storageStatistics"

Statistics split by chats.

count: number

Total number of files.

size: number

Total size of files, in bytes.