1
0
Fork 0
mirror of https://github.com/n8n-io/n8n.git synced 2025-03-05 20:50:17 -08:00
n8n/packages/nodes-base/nodes/ClickUp/ListInterface.ts

12 lines
192 B
TypeScript
Raw Normal View History

2020-04-20 07:35:58 -07:00
export interface IList {
name?: string;
content?: string;
assignee?: number;
status?: string;
priority?: number;
due_date?: number;
due_date_time?: boolean;
unset_status?: boolean;
}