Package com.openai.models.responses
Class ResponseCodeInterpreterToolCall.Output.Logs.Builder
-
- All Implemented Interfaces:
public final class ResponseCodeInterpreterToolCall.Output.Logs.Builder
A builder for Logs.
-
-
Method Summary
-
-
Method Detail
-
logs
final ResponseCodeInterpreterToolCall.Output.Logs.Builder logs(String logs)
The logs output from the code interpreter.
-
logs
final ResponseCodeInterpreterToolCall.Output.Logs.Builder logs(JsonField<String> logs)
Sets Builder.logs to an arbitrary JSON value.
You should usually call Builder.logs with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
type
final ResponseCodeInterpreterToolCall.Output.Logs.Builder type(JsonValue type)
Sets the field to an arbitrary JSON value.
It is usually unnecessary to call this method because the field defaults to the following:
JsonValue.from("logs")
This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final ResponseCodeInterpreterToolCall.Output.Logs.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ResponseCodeInterpreterToolCall.Output.Logs.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ResponseCodeInterpreterToolCall.Output.Logs.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ResponseCodeInterpreterToolCall.Output.Logs.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ResponseCodeInterpreterToolCall.Output.Logs.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ResponseCodeInterpreterToolCall.Output.Logs build()
Returns an immutable instance of Logs.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.logs()
-
-
-
-