Record Class SessionFactoryRunParams
java.lang.Object
java.lang.Record
com.github.copilot.generated.rpc.SessionFactoryRunParams
@CopilotExperimental
@Generated("copilot-sdk-codegen")
public record SessionFactoryRunParams(String sessionId, String name, Object args, RunOptions options)
extends Record
Parameters for invoking a registered factory.
- Since:
- 1.0.0
-
Constructor Summary
ConstructorsConstructorDescriptionSessionFactoryRunParams(String sessionId, String name, Object args, RunOptions options) Creates an instance of aSessionFactoryRunParamsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionargs()Returns the value of theargsrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.name()Returns the value of thenamerecord component.options()Returns the value of theoptionsrecord component.Returns the value of thesessionIdrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
SessionFactoryRunParams
Creates an instance of aSessionFactoryRunParamsrecord class.- Parameters:
sessionId- the value for thesessionIdrecord componentname- the value for thenamerecord componentargs- the value for theargsrecord componentoptions- the value for theoptionsrecord 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
-
args
Returns the value of theargsrecord component.- Returns:
- the value of the
argsrecord component
-
options
Returns the value of theoptionsrecord component.- Returns:
- the value of the
optionsrecord component
-