Skip to main content

Simulation Response

interface SimulationResponse {
  simulation_id: string;
  status: 'completed' | 'running' | 'failed';
  total_repurchase_obligation: number;
  peak_cash_year: number;
  peak_cash_amount: number;
  annual_projections: AnnualProjection[];
}

interface AnnualProjection {
  year: number;
  company_contribution: number;
  shares_released: number;
  repurchase_amount: number;
  ending_trust_cash: number;
}
See API Introduction for more details.