/** * 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 { TableSelectColumn } from './TableSelectColumn'; import type { FileHandleResults } from './FileHandleResults'; /** * JSON schema for TableFileHandleResults. * @export * @interface TableFileHandleResults */ export interface TableFileHandleResults { /** * The ID of the TableEntity than owns these rows * @type {string} * @memberof TableFileHandleResults */ tableId?: string; /** * The list of ColumnModels ID that describes the rows of this set. * @type {Array} * @memberof TableFileHandleResults */ headers?: Array; /** * For each row a list of file handles for each requested column * @type {Array} * @memberof TableFileHandleResults */ rows?: Array; } /** * Check if a given object implements the TableFileHandleResults interface. */ export declare function instanceOfTableFileHandleResults(value: object): value is TableFileHandleResults; export declare function TableFileHandleResultsFromJSON(json: any): TableFileHandleResults; export declare function TableFileHandleResultsFromJSONTyped(json: any, ignoreDiscriminator: boolean): TableFileHandleResults; export declare function TableFileHandleResultsToJSON(json: any): TableFileHandleResults; export declare function TableFileHandleResultsToJSONTyped(value?: TableFileHandleResults | null, ignoreDiscriminator?: boolean): any;