/** * 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 { DownloadList } from './DownloadList'; /** * Response for a request to add files to a user's download list. * @export * @interface AddFileToDownloadListResponse */ export interface AddFileToDownloadListResponse { /** * * @type {string} * @memberof AddFileToDownloadListResponse */ concreteType: AddFileToDownloadListResponseConcreteTypeEnum; /** * * @type {DownloadList} * @memberof AddFileToDownloadListResponse */ downloadList?: DownloadList; } /** * @export */ export declare const AddFileToDownloadListResponseConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_file_AddFileToDownloadListResponse: "org.sagebionetworks.repo.model.file.AddFileToDownloadListResponse"; }; export type AddFileToDownloadListResponseConcreteTypeEnum = typeof AddFileToDownloadListResponseConcreteTypeEnum[keyof typeof AddFileToDownloadListResponseConcreteTypeEnum]; /** * Check if a given object implements the AddFileToDownloadListResponse interface. */ export declare function instanceOfAddFileToDownloadListResponse(value: object): value is AddFileToDownloadListResponse; export declare function AddFileToDownloadListResponseFromJSON(json: any): AddFileToDownloadListResponse; export declare function AddFileToDownloadListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AddFileToDownloadListResponse; export declare function AddFileToDownloadListResponseToJSON(json: any): AddFileToDownloadListResponse; export declare function AddFileToDownloadListResponseToJSONTyped(value?: AddFileToDownloadListResponse | null, ignoreDiscriminator?: boolean): any;