/** * 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 { QueryResponseDetails } from './QueryResponseDetails'; /** * The results of an asynchronous job to query a user's download list. * @export * @interface DownloadListQueryResponse */ export interface DownloadListQueryResponse { /** * * @type {string} * @memberof DownloadListQueryResponse */ concreteType: DownloadListQueryResponseConcreteTypeEnum; /** * * @type {QueryResponseDetails} * @memberof DownloadListQueryResponse */ responseDetails?: QueryResponseDetails; } /** * @export */ export declare const DownloadListQueryResponseConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_download_DownloadListQueryResponse: "org.sagebionetworks.repo.model.download.DownloadListQueryResponse"; }; export type DownloadListQueryResponseConcreteTypeEnum = typeof DownloadListQueryResponseConcreteTypeEnum[keyof typeof DownloadListQueryResponseConcreteTypeEnum]; /** * Check if a given object implements the DownloadListQueryResponse interface. */ export declare function instanceOfDownloadListQueryResponse(value: object): value is DownloadListQueryResponse; export declare function DownloadListQueryResponseFromJSON(json: any): DownloadListQueryResponse; export declare function DownloadListQueryResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DownloadListQueryResponse; export declare function DownloadListQueryResponseToJSON(json: any): DownloadListQueryResponse; export declare function DownloadListQueryResponseToJSONTyped(value?: DownloadListQueryResponse | null, ignoreDiscriminator?: boolean): any;