Request counts for a batch job.

interface RequestCounts {
    completed?: number;
    failed?: number;
    total?: number;
}

Properties

completed?: number

Number of completed requests.

failed?: number

Number of failed requests.

total?: number

Total number of requests in the batch.