/** * 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 { UpdateBatch } from './UpdateBatch'; /** * Request to update one or more cells of the current grid session. * @export * @interface GridUpdateRequest */ export interface GridUpdateRequest { /** * * @type {UpdateBatch} * @memberof GridUpdateRequest */ update?: UpdateBatch; } /** * Check if a given object implements the GridUpdateRequest interface. */ export declare function instanceOfGridUpdateRequest(value: object): value is GridUpdateRequest; export declare function GridUpdateRequestFromJSON(json: any): GridUpdateRequest; export declare function GridUpdateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GridUpdateRequest; export declare function GridUpdateRequestToJSON(json: any): GridUpdateRequest; export declare function GridUpdateRequestToJSONTyped(value?: GridUpdateRequest | null, ignoreDiscriminator?: boolean): any;