Record Class PlanSqlTodoDependency
java.lang.Object
java.lang.Record
com.github.copilot.generated.rpc.PlanSqlTodoDependency
@Generated("copilot-sdk-codegen")
public record PlanSqlTodoDependency(String todoId, String dependsOn)
extends Record
A single dependency edge read from the session SQL `todo_deps` table, indicating that one todo must complete before another.
- Since:
- 1.0.0
-
Constructor Summary
ConstructorsConstructorDescriptionPlanSqlTodoDependency(String todoId, String dependsOn) Creates an instance of aPlanSqlTodoDependencyrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedependsOnrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.todoId()Returns the value of thetodoIdrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
PlanSqlTodoDependency
-
-
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). -
todoId
Returns the value of thetodoIdrecord component.- Returns:
- the value of the
todoIdrecord component
-
dependsOn
Returns the value of thedependsOnrecord component.- Returns:
- the value of the
dependsOnrecord component
-