Package com.openai.models
Class BatchError
-
- All Implemented Interfaces:
public final class BatchError
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
BatchError.Builder
A builder for BatchError.
-
Method Summary
Modifier and Type Method Description final Optional<String>
code()
An error code identifying the error type. final Optional<Long>
line()
The line number of the input file where the error occurred, if applicable. final Optional<String>
message()
A human-readable message providing more details about the error. final Optional<String>
param()
The name of the parameter that caused the error, if applicable. final JsonField<String>
_code()
An error code identifying the error type. final JsonField<Long>
_line()
The line number of the input file where the error occurred, if applicable. final JsonField<String>
_message()
A human-readable message providing more details about the error. final JsonField<String>
_param()
The name of the parameter that caused the error, if applicable. final Map<String, JsonValue>
_additionalProperties()
final BatchError
validate()
final BatchError.Builder
toBuilder()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static BatchError.Builder
builder()
-
-
Method Detail
-
line
final Optional<Long> line()
The line number of the input file where the error occurred, if applicable.
-
message
final Optional<String> message()
A human-readable message providing more details about the error.
-
param
final Optional<String> param()
The name of the parameter that caused the error, if applicable.
-
_line
final JsonField<Long> _line()
The line number of the input file where the error occurred, if applicable.
-
_message
final JsonField<String> _message()
A human-readable message providing more details about the error.
-
_param
final JsonField<String> _param()
The name of the parameter that caused the error, if applicable.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
validate
final BatchError validate()
-
toBuilder
final BatchError.Builder toBuilder()
-
builder
final static BatchError.Builder builder()
-
-
-
-