/** * 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. */ /** * Information about a single selected column. * @export * @interface ResultSelectColumn */ export interface ResultSelectColumn { /** * The name of the column. Will be the alias if one is provide in the select item. * @type {string} * @memberof ResultSelectColumn */ columnName?: string; } /** * Check if a given object implements the ResultSelectColumn interface. */ export declare function instanceOfResultSelectColumn(value: object): value is ResultSelectColumn; export declare function ResultSelectColumnFromJSON(json: any): ResultSelectColumn; export declare function ResultSelectColumnFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResultSelectColumn; export declare function ResultSelectColumnToJSON(json: any): ResultSelectColumn; export declare function ResultSelectColumnToJSONTyped(value?: ResultSelectColumn | null, ignoreDiscriminator?: boolean): any;