/** * 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. */ import type { ResultValidationResults } from './ResultValidationResults'; /** * A single row of a grid query result. * @export * @interface ResultRow */ export interface ResultRow { /** * The JSON object representing a single row. * @type {any} * @memberof ResultRow */ data?: any | null; /** * * @type {ResultValidationResults} * @memberof ResultRow */ validationResults?: ResultValidationResults; /** * Logical timestamp identifying the row in compact form `replicaId.sequenceNumber` (e.g. `123.456`). Used in filters (RowIdFilter) and patch/update operations. * @type {string} * @memberof ResultRow */ rowId?: string; } /** * Check if a given object implements the ResultRow interface. */ export declare function instanceOfResultRow(value: object): value is ResultRow; export declare function ResultRowFromJSON(json: any): ResultRow; export declare function ResultRowFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResultRow; export declare function ResultRowToJSON(json: any): ResultRow; export declare function ResultRowToJSONTyped(value?: ResultRow | null, ignoreDiscriminator?: boolean): any;