import { ObjectTypeEnum } from './task/ObjectTypeEnum';
import { StatusEnum } from './task/StatusEnum';
/** Tasks */
export interface Task {
    /** Completion date */
    doneDate?: string;
    /** Function name */
    function: string;
    /** the id of the task */
    id: number;
    /** last update */
    lastUpdate?: string;
    /** Task related object ID */
    objectId?: string;
    /** Task object type */
    objectType?: ObjectTypeEnum;
    /** Task Creation date */
    startDate: string;
    /** Task status */
    status: StatusEnum;
}
//# sourceMappingURL=Task.d.ts.map