27 lines
576 B
TypeScript
27 lines
576 B
TypeScript
/**
|
|
* Generated by orval v8.3.0 🍺
|
|
* Do not edit manually.
|
|
* Mission Control API
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { TagRef } from "./tagRef";
|
|
|
|
/**
|
|
* Task summary row used inside board-group snapshot responses.
|
|
*/
|
|
export interface BoardGroupTaskSummary {
|
|
assigned_agent_id?: string | null;
|
|
assignee?: string | null;
|
|
board_id: string;
|
|
board_name: string;
|
|
created_at: string;
|
|
due_at?: string | null;
|
|
id: string;
|
|
in_progress_at?: string | null;
|
|
priority: string;
|
|
status: string;
|
|
tags?: TagRef[];
|
|
title: string;
|
|
updated_at: string;
|
|
}
|