/** * 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. */ /** * Request to update the grid by executing a SQL update command. * @export * @interface UpdateGridRequest */ export interface UpdateGridRequest { /** * The grid session ID. * @type {string} * @memberof UpdateGridRequest */ gridSessionId?: string; /** * Identifies the replica that will be establishing the websocket connection. * @type {number} * @memberof UpdateGridRequest */ replicaId?: number; } /** * Check if a given object implements the UpdateGridRequest interface. */ export declare function instanceOfUpdateGridRequest(value: object): value is UpdateGridRequest; export declare function UpdateGridRequestFromJSON(json: any): UpdateGridRequest; export declare function UpdateGridRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateGridRequest; export declare function UpdateGridRequestToJSON(json: any): UpdateGridRequest; export declare function UpdateGridRequestToJSONTyped(value?: UpdateGridRequest | null, ignoreDiscriminator?: boolean): any;