/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * Configuration for a data clip resolution job */ export interface UpdateDataClipResolutionsJobConfig { /** The ID of the data clip to resolve */ clipId: Flatfile.DataClipId; /** The ID of the sheet that contains the data clip */ clippedSheetId: Flatfile.SheetId; resolveTo: Flatfile.ResolveTo; removedFromMainResolution: Flatfile.RemovedFromMainResolution; /** Optional. If provided, only this column will be resolved. */ columnField: string; /** Optional. If provided, this value in the column will be replaced with the resolution target. */ columnValue: string; }