/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * { * filterConflicts: "filterConflicts", * id: "id" * } */ export interface GetDataClipResolutionIndexRequest { /** * The column to filter by. */ filterColumn?: string; /** * Whether to filter only conflicts. Default is false */ filterConflicts: string; /** * The record ID to get the index of. */ id: string; }