import type * as Extend from "../../../../index"; /** * @example * { * file: { * url: "https://example.com/bank_statement.pdf", * name: "bank_statement.pdf" * } * } */ export interface ParseRunsCreateRequest { /** The file to be parsed. Files can be provided as a URL or an Extend file ID. */ file: Extend.ParseRunsCreateRequestFile; config?: Extend.ParseConfig; metadata?: Extend.RunMetadata; }