import { StateEnum } from './response/StateEnum';
/** List of task subtasks */
export interface Response {
    /** Creation date of the task */
    createDate: string;
    /** Finish date of the task */
    finishDate?: string;
    /** Name of the task */
    name: string;
    /** State of the task */
    state: StateEnum;
    /** Type of the task */
    type: string;
}
//# sourceMappingURL=Response.d.ts.map