/** * 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 of a job to package files from the user's download list.' * @export * @interface DownloadListPackageResponse */ export interface DownloadListPackageResponse { /** * * @type {string} * @memberof DownloadListPackageResponse */ concreteType: DownloadListPackageResponseConcreteTypeEnum; /** * The identifier of a FileHandle that contains the resulting package zip file. * @type {string} * @memberof DownloadListPackageResponse */ resultFileHandleId?: string; } /** * @export */ export declare const DownloadListPackageResponseConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_download_DownloadListPackageResponse: "org.sagebionetworks.repo.model.download.DownloadListPackageResponse"; }; export type DownloadListPackageResponseConcreteTypeEnum = typeof DownloadListPackageResponseConcreteTypeEnum[keyof typeof DownloadListPackageResponseConcreteTypeEnum]; /** * Check if a given object implements the DownloadListPackageResponse interface. */ export declare function instanceOfDownloadListPackageResponse(value: object): value is DownloadListPackageResponse; export declare function DownloadListPackageResponseFromJSON(json: any): DownloadListPackageResponse; export declare function DownloadListPackageResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DownloadListPackageResponse; export declare function DownloadListPackageResponseToJSON(json: any): DownloadListPackageResponse; export declare function DownloadListPackageResponseToJSONTyped(value?: DownloadListPackageResponse | null, ignoreDiscriminator?: boolean): any;