export interface LegacyProvidedSplitterOutputSplitsItem { /** Unique ID for this split */ id: string; /** ID of the classification type (set in the processor config) */ classificationId: string; /** 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; }