export type DealLostRequest = { /** * Free-text reason persisted on `Deal.lost_reason`. */ lost_reason: string; /** * Optional `code` of a specific `is_lost=True` stage to move to. When omitted, the first lost stage in the pipeline (by sort order) is used. */ stage_code?: string; };