/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { DownloadListItem } from './DownloadListItem'; /** * Request to add a single batch of files to a user's download list. * @export * @interface AddBatchOfFilesToDownloadListRequest */ export interface AddBatchOfFilesToDownloadListRequest { /** * The batch of files to add to the user's download list. Note: There is a limit of 1000 files per batch. * @type {Array} * @memberof AddBatchOfFilesToDownloadListRequest */ batchToAdd?: Array; } /** * Check if a given object implements the AddBatchOfFilesToDownloadListRequest interface. */ export declare function instanceOfAddBatchOfFilesToDownloadListRequest(value: object): value is AddBatchOfFilesToDownloadListRequest; export declare function AddBatchOfFilesToDownloadListRequestFromJSON(json: any): AddBatchOfFilesToDownloadListRequest; export declare function AddBatchOfFilesToDownloadListRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AddBatchOfFilesToDownloadListRequest; export declare function AddBatchOfFilesToDownloadListRequestToJSON(json: any): AddBatchOfFilesToDownloadListRequest; export declare function AddBatchOfFilesToDownloadListRequestToJSONTyped(value?: AddBatchOfFilesToDownloadListRequest | null, ignoreDiscriminator?: boolean): any;