/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../../index"; /** * @example * { * body: { * source: { * name: "name", * fields: [{ * type: "string", * key: "key" * }, { * type: "string", * key: "key" * }] * }, * destination: { * name: "name", * fields: [{ * type: "string", * key: "key" * }, { * type: "string", * key: "key" * }] * } * } * } */ export interface CreateMappingProgram { /** * The ID of the environment */ environmentId?: Flatfile.EnvironmentId; body: Flatfile.ProgramConfig; }