1
0
Fork 0
mirror of https://github.com/n8n-io/n8n.git synced 2025-02-21 02:56:40 -08:00
n8n/packages/nodes-base/nodes/ClickUp/TaskInterface.ts

22 lines
424 B
TypeScript
Raw Normal View History

2020-04-20 07:35:58 -07:00
import {
IDataObject
} from 'n8n-workflow';
2020-01-18 14:19:31 -08:00
export interface ITask {
name?: string;
content?: string;
assignees?: string[] | IDataObject;
2020-01-18 14:19:31 -08:00
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[];
2020-01-18 14:19:31 -08:00
}