/** * 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 { GridSession } from './GridSession'; /** * The response to creating a new grid sesion. * @export * @interface CreateGridResponse */ export interface CreateGridResponse { /** * * @type {string} * @memberof CreateGridResponse */ concreteType: CreateGridResponseConcreteTypeEnum; /** * * @type {GridSession} * @memberof CreateGridResponse */ gridSession?: GridSession; } /** * @export */ export declare const CreateGridResponseConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_grid_CreateGridResponse: "org.sagebionetworks.repo.model.grid.CreateGridResponse"; }; export type CreateGridResponseConcreteTypeEnum = typeof CreateGridResponseConcreteTypeEnum[keyof typeof CreateGridResponseConcreteTypeEnum]; /** * Check if a given object implements the CreateGridResponse interface. */ export declare function instanceOfCreateGridResponse(value: object): value is CreateGridResponse; export declare function CreateGridResponseFromJSON(json: any): CreateGridResponse; export declare function CreateGridResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateGridResponse; export declare function CreateGridResponseToJSON(json: any): CreateGridResponse; export declare function CreateGridResponseToJSONTyped(value?: CreateGridResponse | null, ignoreDiscriminator?: boolean): any;