Record Class SessionShellExecuteUserRequestedResult
java.lang.Object
java.lang.Record
com.github.copilot.generated.rpc.SessionShellExecuteUserRequestedResult
@CopilotExperimental
@Generated("copilot-sdk-codegen")
public record SessionShellExecuteUserRequestedResult(String toolCallId, Boolean success, String output, Long exitCode, String error)
extends Record
Result of a user-requested shell command.
- Since:
- 1.0.0
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.error()Returns the value of theerrorrecord component.exitCode()Returns the value of theexitCoderecord component.final inthashCode()Returns a hash code value for this object.output()Returns the value of theoutputrecord component.success()Returns the value of thesuccessrecord component.Returns the value of thetoolCallIdrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
SessionShellExecuteUserRequestedResult
public SessionShellExecuteUserRequestedResult(String toolCallId, Boolean success, String output, Long exitCode, String error) Creates an instance of aSessionShellExecuteUserRequestedResultrecord class.- Parameters:
toolCallId- the value for thetoolCallIdrecord componentsuccess- the value for thesuccessrecord componentoutput- the value for theoutputrecord componentexitCode- the value for theexitCoderecord componenterror- the value for theerrorrecord component
-
-
Method Details
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
toolCallId
Returns the value of thetoolCallIdrecord component.- Returns:
- the value of the
toolCallIdrecord component
-
success
Returns the value of thesuccessrecord component.- Returns:
- the value of the
successrecord component
-
output
Returns the value of theoutputrecord component.- Returns:
- the value of the
outputrecord component
-
exitCode
Returns the value of theexitCoderecord component.- Returns:
- the value of the
exitCoderecord component
-
error
Returns the value of theerrorrecord component.- Returns:
- the value of the
errorrecord component
-