/** * 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 { CsvTableDescriptor } from './CsvTableDescriptor'; /** * Request to package files from a user's download list. * @export * @interface DownloadListPackageRequest */ export interface DownloadListPackageRequest { /** * * @type {string} * @memberof DownloadListPackageRequest */ concreteType: DownloadListPackageRequestConcreteTypeEnum; /** * Optional parameter to set the name of the resulting zip file. * @type {string} * @memberof DownloadListPackageRequest */ zipFileName?: string; /** * Optional with a default value of false. When set to true, a metadata manifest file will be included in the package. The manifest will include all the metadata for each file in the package. * @type {boolean} * @memberof DownloadListPackageRequest */ includeManifest?: boolean; /** * * @type {CsvTableDescriptor} * @memberof DownloadListPackageRequest */ csvTableDescriptor?: CsvTableDescriptor; } /** * @export */ export declare const DownloadListPackageRequestConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_download_DownloadListPackageRequest: "org.sagebionetworks.repo.model.download.DownloadListPackageRequest"; }; export type DownloadListPackageRequestConcreteTypeEnum = typeof DownloadListPackageRequestConcreteTypeEnum[keyof typeof DownloadListPackageRequestConcreteTypeEnum]; /** * Check if a given object implements the DownloadListPackageRequest interface. */ export declare function instanceOfDownloadListPackageRequest(value: object): value is DownloadListPackageRequest; export declare function DownloadListPackageRequestFromJSON(json: any): DownloadListPackageRequest; export declare function DownloadListPackageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): DownloadListPackageRequest; export declare function DownloadListPackageRequestToJSON(json: any): DownloadListPackageRequest; export declare function DownloadListPackageRequestToJSONTyped(value?: DownloadListPackageRequest | null, ignoreDiscriminator?: boolean): any;