/** * This file was auto-generated by Fern from our API Definition. */ /** * @example * {} */ export interface GetDataClipResolutionsRequest { /** * Include records in the response. Default is true */ includeRecords?: boolean; /** * Include summary in the response. Default is false */ includeSummary?: boolean; /** * The column to filter by. */ filterColumn?: string; /** * Whether to filter only conflicts. Default is false */ filterConflicts?: boolean; /** * Number of resolutions to return in a page. Default is 1000 */ pageSize?: number; /** * Page number of resolutions to return */ pageNumber?: number; }