import type * as Extend from "../../../../index"; /** * @example * { * file: { * url: "https://example.com/form.pdf" * }, * config: { * instructions: "Detect the form fields and use human-readable field names.", * advancedOptions: { * radioEnumsEnabled: true * } * } * } */ export interface EditSchemasGenerateRequest { /** The file to analyze. Files can be provided as a URL or an Extend file ID. */ file: Extend.EditSchemasGenerateRequestFile; config?: Extend.EditSchemaGenerationConfig; }