/** * 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. */ /** * Response to add a single batch of files to a user's download list. * @export * @interface AddBatchOfFilesToDownloadListResponse */ export interface AddBatchOfFilesToDownloadListResponse { /** * The number of files that were added. * @type {number} * @memberof AddBatchOfFilesToDownloadListResponse */ numberOfFilesAdded?: number; } /** * Check if a given object implements the AddBatchOfFilesToDownloadListResponse interface. */ export declare function instanceOfAddBatchOfFilesToDownloadListResponse(value: object): value is AddBatchOfFilesToDownloadListResponse; export declare function AddBatchOfFilesToDownloadListResponseFromJSON(json: any): AddBatchOfFilesToDownloadListResponse; export declare function AddBatchOfFilesToDownloadListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AddBatchOfFilesToDownloadListResponse; export declare function AddBatchOfFilesToDownloadListResponseToJSON(json: any): AddBatchOfFilesToDownloadListResponse; export declare function AddBatchOfFilesToDownloadListResponseToJSONTyped(value?: AddBatchOfFilesToDownloadListResponse | null, ignoreDiscriminator?: boolean): any;