Class ResponseInputItem.FunctionCallOutput
-
- All Implemented Interfaces:
public final class ResponseInputItem.FunctionCallOutputThe output of a function tool call.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classResponseInputItem.FunctionCallOutput.BuilderA builder for FunctionCallOutput.
public final classResponseInputItem.FunctionCallOutput.StatusThe status of the item. One of
in_progress,completed, orincomplete. Populated when items are returned via API.
-
Method Summary
Modifier and Type Method Description final StringcallId()The unique ID of the function tool call generated by the model. final Stringoutput()A JSON string of the output of the function tool call. final JsonValue_type()The type of the function tool call output. final Optional<String>id()The unique ID of the function tool call output. final Optional<ResponseInputItem.FunctionCallOutput.Status>status()The status of the item. final JsonField<String>_callId()The unique ID of the function tool call generated by the model. final JsonField<String>_output()A JSON string of the output of the function tool call. final JsonField<String>_id()The unique ID of the function tool call output. final JsonField<ResponseInputItem.FunctionCallOutput.Status>_status()The status of the item. final Map<String, JsonValue>_additionalProperties()final ResponseInputItem.FunctionCallOutputvalidate()final ResponseInputItem.FunctionCallOutput.BuildertoBuilder()Booleanequals(Object other)IntegerhashCode()StringtoString()final static ResponseInputItem.FunctionCallOutput.Builderbuilder()Returns a mutable builder for constructing an instance of FunctionCallOutput. -
-
Method Detail
-
_type
final JsonValue _type()
The type of the function tool call output. Always
function_call_output.
-
id
final Optional<String> id()
The unique ID of the function tool call output. Populated when this item is returned via API.
-
status
final Optional<ResponseInputItem.FunctionCallOutput.Status> status()
The status of the item. One of
in_progress,completed, orincomplete. Populated when items are returned via API.
-
_callId
final JsonField<String> _callId()
The unique ID of the function tool call generated by the model.
-
_id
final JsonField<String> _id()
The unique ID of the function tool call output. Populated when this item is returned via API.
-
_status
final JsonField<ResponseInputItem.FunctionCallOutput.Status> _status()
The status of the item. One of
in_progress,completed, orincomplete. Populated when items are returned via API.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
validate
final ResponseInputItem.FunctionCallOutput validate()
-
toBuilder
final ResponseInputItem.FunctionCallOutput.Builder toBuilder()
-
builder
final static ResponseInputItem.FunctionCallOutput.Builder builder()
Returns a mutable builder for constructing an instance of FunctionCallOutput.
The following fields are required:
.callId() .output()
-
-
-
-