n8n/packages/nodes-base/nodes/TheHive/interfaces/TaskInterface.ts
2023-04-21 14:23:15 +03:00

26 lines
465 B
TypeScript

export interface ITask {
// Required attributes
id?: string;
title?: string;
status?: TaskStatus;
flag?: boolean;
// Optional attributes
owner?: string;
description?: string;
startDate?: Date;
endDate?: Date;
// Backend generated attributes
createdBy?: string;
createdAt?: Date;
updatedBy?: string;
upadtedAt?: Date;
}
export const enum TaskStatus {
WAITING = 'Waiting',
INPROGRESS = 'InProgress',
COMPLETED = 'Completed',
CANCEL = 'Cancel',
}