RequestCounts

@Serializable
data class RequestCounts(val total: Int, val completed: Int, val failed: Int)

The request counts for different statuses within the batch.

Constructors

Link copied to clipboard
constructor(total: Int, completed: Int, failed: Int)

Properties

Link copied to clipboard
@SerialName(value = "completed")
val completed: Int

Number of requests that have been completed successfully.

Link copied to clipboard
@SerialName(value = "failed")
val failed: Int

Number of requests that have failed.

Link copied to clipboard
@SerialName(value = "total")
val total: Int

Total number of requests in the batch.