/** * 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 { ResultRow } from './ResultRow'; import type { ResultSelectColumn } from './ResultSelectColumn'; /** * Results of a query against a grid session. * @export * @interface ResultQueryResult */ export interface ResultQueryResult { /** * Information about the selected columns. * @type {Array} * @memberof ResultQueryResult */ selectColumns?: Array; /** * A single page of rows. * @type {Array} * @memberof ResultQueryResult */ rows?: Array; } /** * Check if a given object implements the ResultQueryResult interface. */ export declare function instanceOfResultQueryResult(value: object): value is ResultQueryResult; export declare function ResultQueryResultFromJSON(json: any): ResultQueryResult; export declare function ResultQueryResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResultQueryResult; export declare function ResultQueryResultToJSON(json: any): ResultQueryResult; export declare function ResultQueryResultToJSONTyped(value?: ResultQueryResult | null, ignoreDiscriminator?: boolean): any;