/** * 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 row of a TableEntity * @export * @interface TableRow */ export interface TableRow { /** * The immutable ID issued to a new row. * @type {number} * @memberof TableRow */ rowId?: number; /** * The version number of this row. Each row version is immutable, so when a row is updated a new version is created. * @type {number} * @memberof TableRow */ versionNumber?: number; /** * For queries against EntityViews with query.includeEntityEtag=true, this field will contain the etag of the entity. Will be null for all other cases. * @type {string} * @memberof TableRow */ etag?: string; /** * For queries against views, this field will contain the benefactorId of the entity. Will be null for all other cases. * @type {number} * @memberof TableRow */ benefactorId?: number; /** * The values for each column of this row. To delete a row, set this to an empty list: [] * @type {Array} * @memberof TableRow */ values?: Array; } /** * Check if a given object implements the TableRow interface. */ export declare function instanceOfTableRow(value: object): value is TableRow; export declare function TableRowFromJSON(json: any): TableRow; export declare function TableRowFromJSONTyped(json: any, ignoreDiscriminator: boolean): TableRow; export declare function TableRowToJSON(json: any): TableRow; export declare function TableRowToJSONTyped(value?: TableRow | null, ignoreDiscriminator?: boolean): any;