Package com.openai.models
Class CodeInterpreterToolCallDelta
-
- All Implemented Interfaces:
public final class CodeInterpreterToolCallDelta
Details of the Code Interpreter tool call the run step was involved in.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
CodeInterpreterToolCallDelta.Builder
public final class
CodeInterpreterToolCallDelta.Type
The type of tool call. This is always going to be
code_interpreter
for this type of tool call.public final class
CodeInterpreterToolCallDelta.CodeInterpreter
The Code Interpreter tool call definition.
-
Method Summary
Modifier and Type Method Description final Long
index()
The index of the tool call in the tool calls array. final CodeInterpreterToolCallDelta.Type
type()
The type of tool call. final Optional<String>
id()
The ID of the tool call. final Optional<CodeInterpreterToolCallDelta.CodeInterpreter>
codeInterpreter()
The Code Interpreter tool call definition. final JsonField<Long>
_index()
The index of the tool call in the tool calls array. final JsonField<CodeInterpreterToolCallDelta.Type>
_type()
The type of tool call. final JsonField<String>
_id()
The ID of the tool call. final JsonField<CodeInterpreterToolCallDelta.CodeInterpreter>
_codeInterpreter()
The Code Interpreter tool call definition. final Map<String, JsonValue>
_additionalProperties()
final CodeInterpreterToolCallDelta
validate()
final CodeInterpreterToolCallDelta.Builder
toBuilder()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static CodeInterpreterToolCallDelta.Builder
builder()
-
-
Method Detail
-
type
final CodeInterpreterToolCallDelta.Type type()
The type of tool call. This is always going to be
code_interpreter
for this type of tool call.
-
codeInterpreter
final Optional<CodeInterpreterToolCallDelta.CodeInterpreter> codeInterpreter()
The Code Interpreter tool call definition.
-
_type
final JsonField<CodeInterpreterToolCallDelta.Type> _type()
The type of tool call. This is always going to be
code_interpreter
for this type of tool call.
-
_codeInterpreter
final JsonField<CodeInterpreterToolCallDelta.CodeInterpreter> _codeInterpreter()
The Code Interpreter tool call definition.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
validate
final CodeInterpreterToolCallDelta validate()
-
toBuilder
final CodeInterpreterToolCallDelta.Builder toBuilder()
-
builder
final static CodeInterpreterToolCallDelta.Builder builder()
-
-
-
-