/** * 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. */ /** * A simple list of Strings to store query results about a single object. * @export * @interface QueryRow */ export interface QueryRow { /** * The ordered list of annotation values for this object. * @type {Array} * @memberof QueryRow */ values?: Array; } /** * Check if a given object implements the QueryRow interface. */ export declare function instanceOfQueryRow(value: object): value is QueryRow; export declare function QueryRowFromJSON(json: any): QueryRow; export declare function QueryRowFromJSONTyped(json: any, ignoreDiscriminator: boolean): QueryRow; export declare function QueryRowToJSON(json: any): QueryRow; export declare function QueryRowToJSONTyped(value?: QueryRow | null, ignoreDiscriminator?: boolean): any;