mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
28 lines
668 B
TypeScript
28 lines
668 B
TypeScript
|
|
||
|
export interface ITask {
|
||
|
WhoId?: string;
|
||
|
Status?: string;
|
||
|
WhatId?: string;
|
||
|
OwnerId?: string;
|
||
|
Subject?: string;
|
||
|
CallType?: string;
|
||
|
Priority?: string;
|
||
|
CallObject?: string;
|
||
|
Description?: string;
|
||
|
ActivityDate?: string;
|
||
|
IsReminderSet?: boolean;
|
||
|
RecurrenceType?: string;
|
||
|
CallDisposition?:string;
|
||
|
ReminderDateTime?: string;
|
||
|
RecurrenceInstance?: string;
|
||
|
RecurrenceInterval?: number;
|
||
|
RecurrenceDayOfMonth?: number;
|
||
|
CallDurationInSeconds?: number;
|
||
|
RecurrenceEndDateOnly?: string;
|
||
|
RecurrenceMonthOfYear?: string;
|
||
|
RecurrenceDayOfWeekMask?: string;
|
||
|
RecurrenceStartDateOnly?: string;
|
||
|
RecurrenceTimeZoneSidKey?: string;
|
||
|
RecurrenceRegeneratedType?: string;
|
||
|
}
|