/** * 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 to an Update grid SQL request. * @export * @interface UpdateGridResponse */ export interface UpdateGridResponse { /** * The number of rows updated with this request. * @type {number} * @memberof UpdateGridResponse */ updatedRowCount?: number; } /** * Check if a given object implements the UpdateGridResponse interface. */ export declare function instanceOfUpdateGridResponse(value: object): value is UpdateGridResponse; export declare function UpdateGridResponseFromJSON(json: any): UpdateGridResponse; export declare function UpdateGridResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateGridResponse; export declare function UpdateGridResponseToJSON(json: any): UpdateGridResponse; export declare function UpdateGridResponseToJSONTyped(value?: UpdateGridResponse | null, ignoreDiscriminator?: boolean): any;