/** * 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. */ /** * Response summarizing the outcome of a grid update operation. * @export * @interface GridUpdateResponse */ export interface GridUpdateResponse { /** * Number of rows updated for each update in the batch, in the same order as the request. Each element corresponds to one update operation. * @type {Array} * @memberof GridUpdateResponse */ updateResults?: Array; /** * Total number of rows updated across all updates in the batch. * @type {number} * @memberof GridUpdateResponse */ totalRowsUpdated?: number; } /** * Check if a given object implements the GridUpdateResponse interface. */ export declare function instanceOfGridUpdateResponse(value: object): value is GridUpdateResponse; export declare function GridUpdateResponseFromJSON(json: any): GridUpdateResponse; export declare function GridUpdateResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GridUpdateResponse; export declare function GridUpdateResponseToJSON(json: any): GridUpdateResponse; export declare function GridUpdateResponseToJSONTyped(value?: GridUpdateResponse | null, ignoreDiscriminator?: boolean): any;