Package com.openai.models
Class RunStep.LastError
-
- All Implemented Interfaces:
public final class RunStep.LastError
The last error associated with this run step. Will be
null
if there are no errors.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
RunStep.LastError.Builder
A builder for LastError.
public final class
RunStep.LastError.Code
One of
server_error
orrate_limit_exceeded
.
-
Method Summary
Modifier and Type Method Description final RunStep.LastError.Code
code()
One of server_error
orrate_limit_exceeded
.final String
message()
A human-readable description of the error. final JsonField<RunStep.LastError.Code>
_code()
One of server_error
orrate_limit_exceeded
.final JsonField<String>
_message()
A human-readable description of the error. final Map<String, JsonValue>
_additionalProperties()
final RunStep.LastError
validate()
final RunStep.LastError.Builder
toBuilder()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static RunStep.LastError.Builder
builder()
-
-
Method Detail
-
code
final RunStep.LastError.Code code()
One of
server_error
orrate_limit_exceeded
.
-
_code
final JsonField<RunStep.LastError.Code> _code()
One of
server_error
orrate_limit_exceeded
.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
validate
final RunStep.LastError validate()
-
toBuilder
final RunStep.LastError.Builder toBuilder()
-
builder
final static RunStep.LastError.Builder builder()
-
-
-
-