/** * Generated by orval v8.2.0 🍺 * Do not edit manually. * Mission Control API * OpenAPI spec version: 0.1.0 */ import type { TaskCreateStatus } from "./taskCreateStatus"; export interface TaskCreate { title: string; description?: string | null; status?: TaskCreateStatus; priority?: string; due_at?: string | null; assigned_agent_id?: string | null; created_by_user_id?: string | null; }