/** * The split metadata details for a derivative file. * * **Availability:** Only included if this file is a derivative of another file, for instance if it was created via a Splitter in a workflow. */ export interface ParentSplit { /** The ID of the split. */ id: string; /** The type of the split. */ type: string; /** The identifier of the split. */ identifier: string; /** The start page of the split. */ startPage: number; /** The end page of the split. */ endPage: number; }