Interface UpdateFileDownloads

The state of the file download list has changed. Subtype of Update.

interface UpdateFileDownloads {
    @type: "updateFileDownloads";
    downloaded_size: number;
    total_count: number;
    total_size: number;
}

Properties

@type: "updateFileDownloads"
downloaded_size: number

Total downloaded size of files in the file download list, in bytes.

total_count: number

Total number of files in the file download list.

total_size: number

Total size of files in the file download list, in bytes.