GetSummaryResponse

@Serializable
data class GetSummaryResponse(val plan: Plan, val tasks: List<Task>, val errorLogs: List<ErrorLog>)

Data class representing the response for getting a summary.

Constructors

Link copied to clipboard
constructor(plan: Plan, tasks: List<Task>, errorLogs: List<ErrorLog>)

Properties

Link copied to clipboard

The list of error logs associated with the plan.

Link copied to clipboard
val plan: Plan

The plan associated with the response.

Link copied to clipboard

The list of tasks associated with the plan.