/** * This file was auto-generated by Fern from our API Definition. */ import * as Klavis from "../index.js"; /** * Asana Task object */ export interface AsanaTask { /** Globally unique identifier of the resource (read-only, set by Asana) */ gid?: string; /** Task name */ name: string; /** Task notes/description */ notes?: string; /** Whether task is completed */ completed?: boolean; /** User GID assigned to task */ assignee?: string; /** Due date (YYYY-MM-DD) */ due_on?: string; /** Due datetime (ISO 8601) */ due_at?: string; /** Start date (YYYY-MM-DD) */ start_on?: string; /** Stories (comments) on this task */ stories?: Klavis.AsanaStory[]; }