/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../../index"; /** * @example * { * appId: "appId", * matchKeys: ["matchKeys", "matchKeys"] * } */ export interface ListTransformationsRequest { /** * The id of the app for which to list transformations */ appId: Flatfile.AppId; /** * Filter transformations by matching keys */ matchKeys: string[]; /** * Additional keys to filter transformations by */ filterKeys?: string[]; /** * Page number to return (default 1) */ page?: number; /** * Minimum Jaccard similarity threshold (default 0.8) */ overlap?: number; }