Package com.openai.models.responses
Class ResponseFunctionShellCallOutputContent
-
- All Implemented Interfaces:
public final class ResponseFunctionShellCallOutputContentCaptured stdout and stderr for a portion of a function shell tool call output.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classResponseFunctionShellCallOutputContent.BuilderA builder for ResponseFunctionShellCallOutputContent.
public final classResponseFunctionShellCallOutputContent.OutcomeThe exit or timeout outcome associated with this chunk.
-
Method Summary
Modifier and Type Method Description final ResponseFunctionShellCallOutputContent.Outcomeoutcome()The exit or timeout outcome associated with this chunk. final Stringstderr()Captured stderr output for this chunk of the shell call. final Stringstdout()Captured stdout output for this chunk of the shell call. final JsonField<ResponseFunctionShellCallOutputContent.Outcome>_outcome()Returns the raw JSON value of outcome. final JsonField<String>_stderr()Returns the raw JSON value of stderr. final JsonField<String>_stdout()Returns the raw JSON value of stdout. final Map<String, JsonValue>_additionalProperties()final ResponseFunctionShellCallOutputContent.BuildertoBuilder()final ResponseFunctionShellCallOutputContentvalidate()final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static ResponseFunctionShellCallOutputContent.Builderbuilder()Returns a mutable builder for constructing an instance of ResponseFunctionShellCallOutputContent. -
-
Method Detail
-
outcome
final ResponseFunctionShellCallOutputContent.Outcome outcome()
The exit or timeout outcome associated with this chunk.
-
_outcome
final JsonField<ResponseFunctionShellCallOutputContent.Outcome> _outcome()
Returns the raw JSON value of outcome.
Unlike outcome, this method doesn't throw if the JSON field has an unexpected type.
-
_stderr
final JsonField<String> _stderr()
Returns the raw JSON value of stderr.
Unlike stderr, this method doesn't throw if the JSON field has an unexpected type.
-
_stdout
final JsonField<String> _stdout()
Returns the raw JSON value of stdout.
Unlike stdout, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final ResponseFunctionShellCallOutputContent.Builder toBuilder()
-
validate
final ResponseFunctionShellCallOutputContent validate()
-
builder
final static ResponseFunctionShellCallOutputContent.Builder builder()
Returns a mutable builder for constructing an instance of ResponseFunctionShellCallOutputContent.
The following fields are required:
.outcome() .stderr() .stdout()
-
-
-
-