/** * This file was auto-generated by Fern from our API Definition. */ /** * Close Opportunity object - child of Lead */ export interface CloseOpportunity { /** Opportunity note/description */ note: string; /** Opportunity value in cents */ value?: number; /** Confidence percentage (0-100) */ confidence?: number; /** Value period (e.g., 'one_time', 'monthly', 'annual') */ value_period?: string; }