Interface FoundFileDownloads

Contains a list of downloaded files, found by a search.

interface FoundFileDownloads {
    @type: "foundFileDownloads";
    files: FileDownload[];
    next_offset: string;
    total_counts: DownloadedFileCounts;
}

Properties

@type: "foundFileDownloads"
files: FileDownload[]

The list of files.

next_offset: string

The offset for the next request. If empty, then there are no more results.

total_counts: DownloadedFileCounts

Total number of suitable files, ignoring offset.