2020-02-10 12:55:28 -08:00
|
|
|
export interface ITask {
|
2021-09-05 05:55:53 -07:00
|
|
|
TaskSubtype?: string;
|
2020-02-10 12:55:28 -08:00
|
|
|
WhoId?: string;
|
|
|
|
Status?: string;
|
|
|
|
WhatId?: string;
|
|
|
|
OwnerId?: string;
|
|
|
|
Subject?: string;
|
|
|
|
CallType?: string;
|
|
|
|
Priority?: string;
|
|
|
|
CallObject?: string;
|
|
|
|
Description?: string;
|
|
|
|
ActivityDate?: string;
|
|
|
|
IsReminderSet?: boolean;
|
|
|
|
RecurrenceType?: string;
|
2021-01-13 01:45:41 -08:00
|
|
|
CallDisposition?: string;
|
2020-02-10 12:55:28 -08:00
|
|
|
ReminderDateTime?: string;
|
|
|
|
RecurrenceInstance?: string;
|
|
|
|
RecurrenceInterval?: number;
|
|
|
|
RecurrenceDayOfMonth?: number;
|
|
|
|
CallDurationInSeconds?: number;
|
|
|
|
RecurrenceEndDateOnly?: string;
|
|
|
|
RecurrenceMonthOfYear?: string;
|
|
|
|
RecurrenceDayOfWeekMask?: string;
|
|
|
|
RecurrenceStartDateOnly?: string;
|
|
|
|
RecurrenceTimeZoneSidKey?: string;
|
|
|
|
RecurrenceRegeneratedType?: string;
|
|
|
|
}
|