/** * 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 { Update } from './Update'; /** * Request to update one or more cells of the current grid session in a single batch operation. * @export * @interface UpdateBatch */ export interface UpdateBatch { /** * A batch containing one or more cell updates to apply to the grid. All updates in the batch are processed together. * @type {Array} * @memberof UpdateBatch */ batch?: Array; } /** * Check if a given object implements the UpdateBatch interface. */ export declare function instanceOfUpdateBatch(value: object): value is UpdateBatch; export declare function UpdateBatchFromJSON(json: any): UpdateBatch; export declare function UpdateBatchFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateBatch; export declare function UpdateBatchToJSON(json: any): UpdateBatch; export declare function UpdateBatchToJSONTyped(value?: UpdateBatch | null, ignoreDiscriminator?: boolean): any;