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