/** * 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 { GridUpdateResponse } from './GridUpdateResponse'; /** * Response for the grid update asynchronous job. * @export * @interface GridUpdateJobResponse */ export interface GridUpdateJobResponse { /** * * @type {string} * @memberof GridUpdateJobResponse */ concreteType: GridUpdateJobResponseConcreteTypeEnum; /** * * @type {GridUpdateResponse} * @memberof GridUpdateJobResponse */ updateResponse?: GridUpdateResponse; } /** * @export */ export declare const GridUpdateJobResponseConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_grid_GridUpdateJobResponse: "org.sagebionetworks.repo.model.grid.GridUpdateJobResponse"; }; export type GridUpdateJobResponseConcreteTypeEnum = typeof GridUpdateJobResponseConcreteTypeEnum[keyof typeof GridUpdateJobResponseConcreteTypeEnum]; /** * Check if a given object implements the GridUpdateJobResponse interface. */ export declare function instanceOfGridUpdateJobResponse(value: object): value is GridUpdateJobResponse; export declare function GridUpdateJobResponseFromJSON(json: any): GridUpdateJobResponse; export declare function GridUpdateJobResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GridUpdateJobResponse; export declare function GridUpdateJobResponseToJSON(json: any): GridUpdateJobResponse; export declare function GridUpdateJobResponseToJSONTyped(value?: GridUpdateJobResponse | null, ignoreDiscriminator?: boolean): any;