/** * Input for bulk download files. Only one of packages or versions should be provided. * */ export interface BulkDownloadFilesRequestInputV3 { /** * Name of the output file to be downloaded */ outputFileName?: string; /** * List of packages Id to download */ packageIds?: string[]; /** * List of versions Id to download */ versionIds?: string[]; }