export interface DocAiDownloadUrlResponse { /** HTTP method to use for the download (e.g. `GET`). */ method: string; /** Presigned URL to download the job output from. */ url: string; /** Headers that must be sent with the download request. */ headers?: Record | undefined; /** Timestamp after which the download URL is no longer valid. */ expires_at: string; }