Package com.openai.models.beta.responses
Class BetaResponseCodeInterpreterToolCall.Output.Logs
-
- All Implemented Interfaces:
public final class BetaResponseCodeInterpreterToolCall.Output.LogsThe logs output from the code interpreter.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classBetaResponseCodeInterpreterToolCall.Output.Logs.BuilderA builder for Logs.
-
Method Summary
Modifier and Type Method Description final Stringlogs()The logs output from the code interpreter. final JsonValue_type()The type of the output. final JsonField<String>_logs()Returns the raw JSON value of logs. final Map<String, JsonValue>_additionalProperties()final BetaResponseCodeInterpreterToolCall.Output.Logs.BuildertoBuilder()final BetaResponseCodeInterpreterToolCall.Output.Logsvalidate()Validates that the types of all values in this object match their expected types recursively. final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static BetaResponseCodeInterpreterToolCall.Output.Logs.Builderbuilder()Returns a mutable builder for constructing an instance of Logs. -
-
Method Detail
-
_type
final JsonValue _type()
The type of the output. Always
logs.Expected to always return the following:
JsonValue.from("logs")However, this method can be useful for debugging and logging (e.g. if the server responded with an unexpected value).
-
_logs
final JsonField<String> _logs()
Returns the raw JSON value of logs.
Unlike logs, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final BetaResponseCodeInterpreterToolCall.Output.Logs.Builder toBuilder()
-
validate
final BetaResponseCodeInterpreterToolCall.Output.Logs validate()
Validates that the types of all values in this object match their expected types recursively.
This method is not forwards compatible with new types from the API for existing fields.
-
builder
final static BetaResponseCodeInterpreterToolCall.Output.Logs.Builder builder()
Returns a mutable builder for constructing an instance of Logs.
The following fields are required:
.logs()
-
-
-
-