/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; export interface Calculation { /** Unique identifier for the calculation */ id: Flatfile.CalculationId; /** ID of the workbook this calculation belongs to */ workbookId: Flatfile.WorkbookId; /** ID of the sheet this calculation belongs to */ sheetId: Flatfile.SheetId; /** Field key this calculation is performed on */ fieldKey: string; /** Type of calculation being performed */ type: Flatfile.CalculationType; /** Result of the calculation */ value?: number; }