/** * 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 response body of an asynchronous CSV grid download job. * @export * @interface DownloadFromGridResult */ export interface DownloadFromGridResult { /** * * @type {string} * @memberof DownloadFromGridResult */ concreteType: DownloadFromGridResultConcreteTypeEnum; /** * The session ID of the grid from which this CSV was derived. * @type {string} * @memberof DownloadFromGridResult */ sessionId?: string; /** * The resulting file handle ID can be used to download the CSV file created by this job. The file will contain all of the data in the grid session when the job was started. * @type {string} * @memberof DownloadFromGridResult */ resultsFileHandleId?: string; } /** * @export */ export declare const DownloadFromGridResultConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_grid_DownloadFromGridResult: "org.sagebionetworks.repo.model.grid.DownloadFromGridResult"; }; export type DownloadFromGridResultConcreteTypeEnum = typeof DownloadFromGridResultConcreteTypeEnum[keyof typeof DownloadFromGridResultConcreteTypeEnum]; /** * Check if a given object implements the DownloadFromGridResult interface. */ export declare function instanceOfDownloadFromGridResult(value: object): value is DownloadFromGridResult; export declare function DownloadFromGridResultFromJSON(json: any): DownloadFromGridResult; export declare function DownloadFromGridResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): DownloadFromGridResult; export declare function DownloadFromGridResultToJSON(json: any): DownloadFromGridResult; export declare function DownloadFromGridResultToJSONTyped(value?: DownloadFromGridResult | null, ignoreDiscriminator?: boolean): any;