mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
63a459ac92
* ⚡ Add filters to all get:All operations * ⚡ Small fix * ⚡Add description to condition fields * ⚡ Minor improvements to Salesforce-Node Co-authored-by: Harshil <ghagrawal17@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
27 lines
668 B
TypeScript
27 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;
|
|
}
|