export interface LegacySplitterOutputSplitsItem { /** The type of the split document (set in the processor config), corresponds to the classificationId */ type: string; /** Explanation of the results */ observation: string; /** Identifier for the split document (e.g. invoice number) */ identifier: string; /** The start page of the split document */ startPage: number; /** The end page of the split document */ endPage: number; /** Optional name for the split */ name?: string; /** ID of the classification type (set in the processor config) */ classificationId: string; /** Unique ID for this split */ id: string; /** File ID associated with this split */ fileId: string; }