interface ITask {
    card: ICard;
    checklist: { done: boolean; id?: string; name: string }[];
    color: string;
    created_at: string;
    description: string;
    finish_at: string;
    finish_date?: string;
    id: string;
    name: string;
    organization: IOrganization;
    person: IPerson;
    prediction_time?: number;
    sector: ISector;
    service: IService;
    start_date?: string;
    status: TaskStatus;
    type: TaskType;
    updated_at: string;
    user: IUser;
    workspace: IWorkspace;
}

Properties

card: ICard
checklist: { done: boolean; id?: string; name: string }[]
color: string
created_at: string
description: string
finish_at: string
finish_date?: string
id: string
name: string
organization: IOrganization
person: IPerson
prediction_time?: number
sector: ISector
service: IService
start_date?: string
status: TaskStatus
type: TaskType
updated_at: string
user: IUser
workspace: IWorkspace