Record Class FactoryExecuteParams
java.lang.Object
java.lang.Record
com.github.copilot.generated.rpc.FactoryExecuteParams
@CopilotExperimental
@Generated("copilot-sdk-codegen")
public record FactoryExecuteParams(String sessionId, String name, String runId, String executionToken, Object args)
extends Record
Parameters sent to the owning extension to execute a factory closure.
- Since:
- 1.0.0
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionargs()Returns the value of theargsrecord component.final booleanIndicates whether some other object is "equal to" this one.Returns the value of theexecutionTokenrecord component.final inthashCode()Returns a hash code value for this object.name()Returns the value of thenamerecord component.runId()Returns the value of therunIdrecord component.Returns the value of thesessionIdrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
FactoryExecuteParams
public FactoryExecuteParams(String sessionId, String name, String runId, String executionToken, Object args) Creates an instance of aFactoryExecuteParamsrecord class.- Parameters:
sessionId- the value for thesessionIdrecord componentname- the value for thenamerecord componentrunId- the value for therunIdrecord componentexecutionToken- the value for theexecutionTokenrecord componentargs- the value for theargsrecord 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). -
sessionId
Returns the value of thesessionIdrecord component.- Returns:
- the value of the
sessionIdrecord component
-
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
runId
Returns the value of therunIdrecord component.- Returns:
- the value of the
runIdrecord component
-
executionToken
Returns the value of theexecutionTokenrecord component.- Returns:
- the value of the
executionTokenrecord component
-
args
Returns the value of theargsrecord component.- Returns:
- the value of the
argsrecord component
-