Class ResponseFunctionShellToolCallOutput.Output
-
- All Implemented Interfaces:
public final class ResponseFunctionShellToolCallOutput.OutputThe content of a shell call output.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classResponseFunctionShellToolCallOutput.Output.BuilderA builder for Output.
public final classResponseFunctionShellToolCallOutput.Output.OutcomeRepresents either an exit outcome (with an exit code) or a timeout outcome for a shell call output chunk.
-
Method Summary
-
-
Method Detail
-
outcome
final ResponseFunctionShellToolCallOutput.Output.Outcome outcome()
Represents either an exit outcome (with an exit code) or a timeout outcome for a shell call output chunk.
-
_outcome
final JsonField<ResponseFunctionShellToolCallOutput.Output.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.
-
_createdBy
final JsonField<String> _createdBy()
Returns the raw JSON value of createdBy.
Unlike createdBy, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final ResponseFunctionShellToolCallOutput.Output.Builder toBuilder()
-
validate
final ResponseFunctionShellToolCallOutput.Output validate()
-
builder
final static ResponseFunctionShellToolCallOutput.Output.Builder builder()
Returns a mutable builder for constructing an instance of Output.
The following fields are required:
.outcome() .stderr() .stdout()
-
-
-
-