n8n/packages/nodes-base/nodes/ClickUp/TaskInterface.ts
Ricardo Espinoza 624da2f727 Add custom fields support
done
2020-02-03 12:51:22 -05:00

20 lines
408 B
TypeScript

import { IDataObject } from "n8n-workflow";
export interface ITask {
name?: string;
content?: string;
assignees?: string[];
tags?: string[];
status?: string;
priority?: number;
due_date?: number;
due_date_time?: boolean;
time_estimate?: number;
start_date?: number;
start_date_time?: boolean;
markdown_content?: string;
notify_all?: boolean;
parent?: string;
custom_fields?: IDataObject[];
}