/** * This file was auto-generated by Fern from our API Definition. */ import * as Klavis from "../index.js"; /** * Asana Project object */ export interface AsanaProject { /** Project GID (read-only, set by Asana) */ gid?: string; /** Project name */ name: string; /** Project notes/description */ notes?: string; /** Tasks in this project */ tasks?: Klavis.AsanaTask[]; }