/** * 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 the columns the user has actively selected in the interface. * @export * @interface SelectSelection */ export interface SelectSelection { /** * Required. Full name of the exact type used. * @type {string} * @memberof SelectSelection */ concreteType: SelectSelectionConcreteTypeEnum; } /** * @export */ export declare const SelectSelectionConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_grid_query_SelectSelection: "org.sagebionetworks.repo.model.grid.query.SelectSelection"; }; export type SelectSelectionConcreteTypeEnum = typeof SelectSelectionConcreteTypeEnum[keyof typeof SelectSelectionConcreteTypeEnum]; /** * Check if a given object implements the SelectSelection interface. */ export declare function instanceOfSelectSelection(value: object): value is SelectSelection; export declare function SelectSelectionFromJSON(json: any): SelectSelection; export declare function SelectSelectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): SelectSelection; export declare function SelectSelectionToJSON(json: any): SelectSelection; export declare function SelectSelectionToJSONTyped(value?: SelectSelection | null, ignoreDiscriminator?: boolean): any;