/** * 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 SelectItem that will result in the selection of a single column by its name. * @export * @interface SelectByName */ export interface SelectByName { /** * Required. Full name of the exact type used. * @type {string} * @memberof SelectByName */ concreteType: SelectByNameConcreteTypeEnum; /** * The name of the column to include in the select. * @type {string} * @memberof SelectByName */ columnName?: string; } /** * @export */ export declare const SelectByNameConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_grid_query_SelectByName: "org.sagebionetworks.repo.model.grid.query.SelectByName"; }; export type SelectByNameConcreteTypeEnum = typeof SelectByNameConcreteTypeEnum[keyof typeof SelectByNameConcreteTypeEnum]; /** * Check if a given object implements the SelectByName interface. */ export declare function instanceOfSelectByName(value: object): value is SelectByName; export declare function SelectByNameFromJSON(json: any): SelectByName; export declare function SelectByNameFromJSONTyped(json: any, ignoreDiscriminator: boolean): SelectByName; export declare function SelectByNameToJSON(json: any): SelectByName; export declare function SelectByNameToJSONTyped(value?: SelectByName | null, ignoreDiscriminator?: boolean): any;