n8n/packages/nodes-base/nodes/ClickUp/TaskInterface.ts

17 lines
331 B
TypeScript
Raw Normal View History

2020-01-18 14:19:31 -08:00
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;
}