/** * 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 SparseRowDto */ export interface SparseRowDto { /** * The current etag of this object. * @type {string} * @memberof SparseRowDto */ etag?: string; /** * The immutable ID of a row. * @type {number} * @memberof SparseRowDto */ rowId?: number; /** * The the version number of this row. * @type {number} * @memberof SparseRowDto */ versionNumber?: number; /** * The values for columns of this row as a map. The key is the columnId and value is the cell value * @type {{ [key: string]: string; }} * @memberof SparseRowDto */ values?: { [key: string]: string; }; } /** * Check if a given object implements the SparseRowDto interface. */ export declare function instanceOfSparseRowDto(value: object): value is SparseRowDto; export declare function SparseRowDtoFromJSON(json: any): SparseRowDto; export declare function SparseRowDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): SparseRowDto; export declare function SparseRowDtoToJSON(json: any): SparseRowDto; export declare function SparseRowDtoToJSONTyped(value?: SparseRowDto | null, ignoreDiscriminator?: boolean): any;