Package com.openai.models.responses
Class ResponseFunctionCallArgumentsDoneEvent
-
- All Implemented Interfaces:
public final class ResponseFunctionCallArgumentsDoneEvent
Emitted when function-call arguments are finalized.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
ResponseFunctionCallArgumentsDoneEvent.Builder
A builder for ResponseFunctionCallArgumentsDoneEvent.
-
Method Summary
Modifier and Type Method Description final String
arguments()
The function-call arguments. final String
itemId()
The ID of the item. final Long
outputIndex()
The index of the output item. final JsonValue
_type()
final JsonField<String>
_arguments()
The function-call arguments. final JsonField<String>
_itemId()
The ID of the item. final JsonField<Long>
_outputIndex()
The index of the output item. final Map<String, JsonValue>
_additionalProperties()
final ResponseFunctionCallArgumentsDoneEvent
validate()
final ResponseFunctionCallArgumentsDoneEvent.Builder
toBuilder()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static ResponseFunctionCallArgumentsDoneEvent.Builder
builder()
Returns a mutable builder for constructing an instance of ResponseFunctionCallArgumentsDoneEvent. -
-
Method Detail
-
outputIndex
final Long outputIndex()
The index of the output item.
-
_arguments
final JsonField<String> _arguments()
The function-call arguments.
-
_outputIndex
final JsonField<Long> _outputIndex()
The index of the output item.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
validate
final ResponseFunctionCallArgumentsDoneEvent validate()
-
toBuilder
final ResponseFunctionCallArgumentsDoneEvent.Builder toBuilder()
-
builder
final static ResponseFunctionCallArgumentsDoneEvent.Builder builder()
Returns a mutable builder for constructing an instance of ResponseFunctionCallArgumentsDoneEvent.
The following fields are required:
.arguments() .itemId() .outputIndex()
-
-
-
-