GetPlanResponse

@Serializable
data class GetPlanResponse(val plan: Plan, val latestTask: Task)

Data class representing the response for getting a plan.

Constructors

Link copied to clipboard
constructor(plan: Plan, latestTask: Task)

Properties

Link copied to clipboard

The latest/last task the plan will be executing.

Link copied to clipboard
val plan: Plan

The plan associated with the response.