/** * This file was auto-generated by Fern from our API Definition. */ /** * Close Task object - child of Lead */ export interface CloseTask { /** Task description */ text: string; /** The date of a task represents the point in time of when the task is actionable and appears in the inbox */ date?: string; /** Whether task is completed */ is_complete?: boolean; /** User ID assigned to */ assigned_to?: string; }