/** * 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. */ /** * Represents a single partial row of a TableEntity. * @export * @interface PartialRow */ export interface PartialRow { /** * The current etag of this object. * @type {string} * @memberof PartialRow */ etag?: string; /** * The immutable ID of a row. * @type {number} * @memberof PartialRow */ rowId?: number; /** * The values for columns of this row as a map. The key is the columnId and value is the cell value. To perform updates on a row inside of Views, a pair of {"key":"etag", "value":"REPLACE-WITH-ETAG-OF-ENTITY-BEING-UPDATED"} must be also included. * @type {{ [key: string]: string; }} * @memberof PartialRow */ values?: { [key: string]: string; }; } /** * Check if a given object implements the PartialRow interface. */ export declare function instanceOfPartialRow(value: object): value is PartialRow; export declare function PartialRowFromJSON(json: any): PartialRow; export declare function PartialRowFromJSONTyped(json: any, ignoreDiscriminator: boolean): PartialRow; export declare function PartialRowToJSON(json: any): PartialRow; export declare function PartialRowToJSONTyped(value?: PartialRow | null, ignoreDiscriminator?: boolean): any;