interface FileCounts {
    cancelled: number;
    completed: number;
    failed: number;
    in_progress: number;
    total: number;
}

Properties

cancelled: number

The number of files that where cancelled.

completed: number

The number of files that have been processed.

failed: number

The number of files that have failed to process.

in_progress: number

The number of files that are currently being processed.

total: number

The total number of files.