/** * 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 selection of rows of a TableEntity * @export * @interface RowSelection */ export interface RowSelection { /** * The ID of the TableEntity than owns these rows (optional if supplied by the REST command) * @type {string} * @memberof RowSelection */ tableId?: string; /** * This should be set to the current etag or this selection (the etag returned by a query, or the current etag of the table). * @type {string} * @memberof RowSelection */ etag?: string; /** * Each row id of this list refers to a single row of a TableEntity. * @type {Array} * @memberof RowSelection */ rowIds?: Array; } /** * Check if a given object implements the RowSelection interface. */ export declare function instanceOfRowSelection(value: object): value is RowSelection; export declare function RowSelectionFromJSON(json: any): RowSelection; export declare function RowSelectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): RowSelection; export declare function RowSelectionToJSON(json: any): RowSelection; export declare function RowSelectionToJSONTyped(value?: RowSelection | null, ignoreDiscriminator?: boolean): any;