export interface DocAiPresignUploadResponse { /** Handle for the uploaded file. Pass it through `upload_ids` on a later digitise or extract job request. */ upload_id: string; /** HTTP method to use for the upload (e.g. `PUT`). */ method: string; /** Presigned URL to upload the file to. */ url: string; /** Headers that must be sent with the upload request. */ headers?: Record | undefined; /** Timestamp after which the upload URL is no longer valid. */ expires_at: string; }