mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
2c561507f7
* added Type field in Task resource of salesforce * ⚡ Improvements to #2110 Co-authored-by: Ketan Somvanshi <ketan.somvanshi@plivo.com>
28 lines
691 B
TypeScript
28 lines
691 B
TypeScript
export interface ITask {
|
|
TaskSubtype?: string;
|
|
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;
|
|
}
|