Represents the response structure for retrieving a plan summary. Contains the plan, a list of tasks, and any associated error logs.

Constructors

Properties

Constructors

  • Creates an instance of the GetSummaryResponse class.

    Parameters

    • data: { error_logs: ErrorLog[]; plan: Plan; tasks: Task[] }

      The data containing the plan, tasks, and error logs.

      • error_logs: ErrorLog[]

        A list of error logs associated with the plan or tasks.

      • plan: Plan

        The plan being returned in the response.

      • tasks: Task[]

        A list of tasks associated with the plan.

    Returns GetSummaryResponse

Properties

error_logs: ErrorLog[]

A list of error logs associated with the plan or its tasks.

plan: Plan

The plan associated with the response.

tasks: Task[]

A list of tasks related to the plan.