/** * 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 { ColumnModel } from './ColumnModel'; /** * Metadata about a TableEntity that can be included in an EntityBundle * @export * @interface TableBundle */ export interface TableBundle { /** * The list of ColumnModels currently used by this table. * @type {Array} * @memberof TableBundle */ columnModels?: Array; /** * The maximum number of rows that can be requested or posted for this table in a single call. This is a function of the columns that are currently assigned to this table. * @type {number} * @memberof TableBundle */ maxRowsPerPage?: number; } /** * Check if a given object implements the TableBundle interface. */ export declare function instanceOfTableBundle(value: object): value is TableBundle; export declare function TableBundleFromJSON(json: any): TableBundle; export declare function TableBundleFromJSONTyped(json: any, ignoreDiscriminator: boolean): TableBundle; export declare function TableBundleToJSON(json: any): TableBundle; export declare function TableBundleToJSONTyped(value?: TableBundle | null, ignoreDiscriminator?: boolean): any;