/** * This file was auto-generated by Fern from our API Definition. */ import * as Klavis from "../index.js"; /** * Close Lead object - parent object containing contacts, opportunities, and tasks */ export interface CloseLead { /** Lead name/company name */ name: string; /** Lead status */ status_label?: string; /** Contacts associated with this lead */ contacts?: Klavis.CloseContact[]; /** Opportunities associated with this lead */ opportunities?: Klavis.CloseOpportunity[]; /** Tasks associated with this lead */ tasks?: Klavis.CloseTask[]; }