Package com.openai.models.responses
Class ResponseOutputRefusal
-
- All Implemented Interfaces:
public final class ResponseOutputRefusal
A refusal from the model.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
ResponseOutputRefusal.Builder
A builder for ResponseOutputRefusal.
-
Method Summary
Modifier and Type Method Description final String
refusal()
The refusal explanationfrom the model. final JsonValue
_type()
The type of the refusal. final JsonField<String>
_refusal()
Returns the raw JSON value of refusal. final Map<String, JsonValue>
_additionalProperties()
final ResponseOutputRefusal.Builder
toBuilder()
final ResponseOutputRefusal
validate()
final Boolean
isValid()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static ResponseOutputRefusal.Builder
builder()
Returns a mutable builder for constructing an instance of ResponseOutputRefusal. -
-
Method Detail
-
_type
final JsonValue _type()
The type of the refusal. Always
refusal
.Expected to always return the following:
JsonValue.from("refusal")
However, this method can be useful for debugging and logging (e.g. if the server responded with an unexpected value).
-
_refusal
final JsonField<String> _refusal()
Returns the raw JSON value of refusal.
Unlike refusal, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final ResponseOutputRefusal.Builder toBuilder()
-
validate
final ResponseOutputRefusal validate()
-
builder
final static ResponseOutputRefusal.Builder builder()
Returns a mutable builder for constructing an instance of ResponseOutputRefusal.
The following fields are required:
.refusal()
-
-
-
-