n8n/packages/nodes-base/nodes/Salesforce/TaskInterface.ts
Ricardo Espinoza 63a459ac92
Add filters to all getAll operations to Salesforce Node (#1292)
*  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>
2021-01-13 10:45:41 +01:00

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;
}