Record Class SessionFactoryLogParams
java.lang.Object
java.lang.Record
com.github.copilot.generated.rpc.SessionFactoryLogParams
@CopilotExperimental
@Generated("copilot-sdk-codegen")
public record SessionFactoryLogParams(String sessionId, String runId, String executionToken, List<FactoryLogLine> lines)
extends Record
Parameters for recording factory progress.
- Since:
- 1.0.0
-
Constructor Summary
ConstructorsConstructorDescriptionSessionFactoryLogParams(String sessionId, String runId, String executionToken, List<FactoryLogLine> lines) Creates an instance of aSessionFactoryLogParamsrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal 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.lines()Returns the value of thelinesrecord 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
-
SessionFactoryLogParams
public SessionFactoryLogParams(String sessionId, String runId, String executionToken, List<FactoryLogLine> lines) Creates an instance of aSessionFactoryLogParamsrecord class.- Parameters:
sessionId- the value for thesessionIdrecord componentrunId- the value for therunIdrecord componentexecutionToken- the value for theexecutionTokenrecord componentlines- the value for thelinesrecord 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
-
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
-
lines
Returns the value of thelinesrecord component.- Returns:
- the value of the
linesrecord component
-