34 lines
878 B
TypeScript
34 lines
878 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";
|
|
import type { TaskReadCustomFieldValues } from "./taskReadCustomFieldValues";
|
|
import type { TaskReadStatus } from "./taskReadStatus";
|
|
|
|
/**
|
|
* Task payload returned from read endpoints.
|
|
*/
|
|
export interface TaskRead {
|
|
assigned_agent_id?: string | null;
|
|
blocked_by_task_ids?: string[];
|
|
board_id: string | null;
|
|
created_at: string;
|
|
created_by_user_id: string | null;
|
|
custom_field_values?: TaskReadCustomFieldValues;
|
|
depends_on_task_ids?: string[];
|
|
description?: string | null;
|
|
due_at?: string | null;
|
|
id: string;
|
|
in_progress_at: string | null;
|
|
is_blocked?: boolean;
|
|
priority?: string;
|
|
status?: TaskReadStatus;
|
|
tag_ids?: string[];
|
|
tags?: TagRef[];
|
|
title: string;
|
|
updated_at: string;
|
|
}
|