/** * 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. */ /** * The results of a job to generate a metadata manifest CSV of the available files from the user's download list. * @export * @interface DownloadListManifestResponse */ export interface DownloadListManifestResponse { /** * * @type {string} * @memberof DownloadListManifestResponse */ concreteType: DownloadListManifestResponseConcreteTypeEnum; /** * The identifier of a FileHandle that contains the resulting files manifest. * @type {string} * @memberof DownloadListManifestResponse */ resultFileHandleId?: string; } /** * @export */ export declare const DownloadListManifestResponseConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_download_DownloadListManifestResponse: "org.sagebionetworks.repo.model.download.DownloadListManifestResponse"; }; export type DownloadListManifestResponseConcreteTypeEnum = typeof DownloadListManifestResponseConcreteTypeEnum[keyof typeof DownloadListManifestResponseConcreteTypeEnum]; /** * Check if a given object implements the DownloadListManifestResponse interface. */ export declare function instanceOfDownloadListManifestResponse(value: object): value is DownloadListManifestResponse; export declare function DownloadListManifestResponseFromJSON(json: any): DownloadListManifestResponse; export declare function DownloadListManifestResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DownloadListManifestResponse; export declare function DownloadListManifestResponseToJSON(json: any): DownloadListManifestResponse; export declare function DownloadListManifestResponseToJSONTyped(value?: DownloadListManifestResponse | null, ignoreDiscriminator?: boolean): any;