Package com.openai.models
Class BatchRequestCounts
-
- All Implemented Interfaces:
public final class BatchRequestCounts
The request counts for different statuses within the batch.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
BatchRequestCounts.Builder
A builder for BatchRequestCounts.
-
Method Summary
Modifier and Type Method Description final Long
completed()
Number of requests that have been completed successfully. final Long
failed()
Number of requests that have failed. final Long
total()
Total number of requests in the batch. final JsonField<Long>
_completed()
Number of requests that have been completed successfully. final JsonField<Long>
_failed()
Number of requests that have failed. final JsonField<Long>
_total()
Total number of requests in the batch. final Map<String, JsonValue>
_additionalProperties()
final BatchRequestCounts
validate()
final BatchRequestCounts.Builder
toBuilder()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static BatchRequestCounts.Builder
builder()
-
-
Method Detail
-
_completed
final JsonField<Long> _completed()
Number of requests that have been completed successfully.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
validate
final BatchRequestCounts validate()
-
toBuilder
final BatchRequestCounts.Builder toBuilder()
-
builder
final static BatchRequestCounts.Builder builder()
-
-
-
-