/** * 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 PFB download * @export * @interface DownloadPFBResult */ export interface DownloadPFBResult { /** * * @type {string} * @memberof DownloadPFBResult */ concreteType: DownloadPFBResultConcreteTypeEnum; /** * The resulting file handle ID can be used to download the PFB file created by this job. * @type {string} * @memberof DownloadPFBResult */ resultsFileHandleId?: string; /** * The ID of the table identified in the from clause of the table query. * @type {string} * @memberof DownloadPFBResult */ tableId?: string; } /** * @export */ export declare const DownloadPFBResultConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_table_DownloadPFBResult: "org.sagebionetworks.repo.model.table.DownloadPFBResult"; }; export type DownloadPFBResultConcreteTypeEnum = typeof DownloadPFBResultConcreteTypeEnum[keyof typeof DownloadPFBResultConcreteTypeEnum]; /** * Check if a given object implements the DownloadPFBResult interface. */ export declare function instanceOfDownloadPFBResult(value: object): value is DownloadPFBResult; export declare function DownloadPFBResultFromJSON(json: any): DownloadPFBResult; export declare function DownloadPFBResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): DownloadPFBResult; export declare function DownloadPFBResultToJSON(json: any): DownloadPFBResult; export declare function DownloadPFBResultToJSONTyped(value?: DownloadPFBResult | null, ignoreDiscriminator?: boolean): any;