/** * Request body for bulk job upload/download URL generation. Both job_id and files are required for download. */ export interface FilesRequest { /** UUID of the bulk job returned from job initiation. */ job_id: string; /** Required. Output filenames to download (e.g. "0.json"). Get these from the job status response: job_details[].outputs[].file_name after the job completes. */ files: string[]; }