/** * 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 { RowReference } from './RowReference'; import type { TableSelectColumn } from './TableSelectColumn'; /** * Represents a set of RowReferences of a TableEntity * @export * @interface RowReferenceSet */ export interface RowReferenceSet { /** * The ID of the TableEntity than owns these rows * @type {string} * @memberof RowReferenceSet */ tableId?: string; /** * When a RowReferenceSet is returned from a table update, this will be set to the current etag of the table. * @type {string} * @memberof RowReferenceSet */ etag?: string; /** * The list of ColumnModels ID that describes the rows of this set. * @type {Array} * @memberof RowReferenceSet */ headers?: Array; /** * Each RowReference of this list refers to a single version of a single row of a TableEntity. * @type {Array} * @memberof RowReferenceSet */ rows?: Array; } /** * Check if a given object implements the RowReferenceSet interface. */ export declare function instanceOfRowReferenceSet(value: object): value is RowReferenceSet; export declare function RowReferenceSetFromJSON(json: any): RowReferenceSet; export declare function RowReferenceSetFromJSONTyped(json: any, ignoreDiscriminator: boolean): RowReferenceSet; export declare function RowReferenceSetToJSON(json: any): RowReferenceSet; export declare function RowReferenceSetToJSONTyped(value?: RowReferenceSet | null, ignoreDiscriminator?: boolean): any;