The request counts for different statuses within the batch.

interface BatchRequestCounts {
    completed: number;
    failed: number;
    total: number;
}

Properties

completed: number

Number of requests that have been completed successfully.

failed: number

Number of requests that have failed.

total: number

Total number of requests in the batch.