/** * This file was auto-generated by Fern from our API Definition. */ import * as Vellum from "../../../../index"; /** * @example * { * files: { * "files": { * "key": "value" * } * } * } */ export interface SerializeWorkflowFilesRequest { files: Record; module?: string | null; runnerConfig?: Vellum.RunnerConfigRequest | null; /** * Optional type checker to run during serialization. Supported values: mypy, zuban, default. * * * `mypy` - Mypy * * `zuban` - Zuban * * `default` - Default */ typeChecker?: Vellum.TypeCheckerEnum | null; }