import type * as Merge from "../../../index"; /** * # The Task Object * ### Description * The `Task` object is used to represent a task, such as a to-do item. * ### Usage Example * TODO */ export interface PatchedTaskRequest { /** The task's subject. */ subject?: string; /** The task's content. */ content?: string; /** The task's owner. */ owner?: string; /** The task's account. */ account?: string; /** The task's opportunity. */ opportunity?: string; /** The task's contact. */ contact?: string; /** When the task is completed. */ completedDate?: Date; /** When the task is due. */ dueDate?: Date; /** * The task's status. * * * `OPEN` - OPEN * * `CLOSED` - CLOSED */ status?: Merge.crm.PatchedTaskRequestStatus; integrationParams?: Record; linkedAccountParams?: Record; remoteFields?: Merge.crm.RemoteFieldRequest[]; }