/** * 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 response to a table search change request. * @export * @interface TableSearchChangeResponse */ export interface TableSearchChangeResponse { /** * * @type {string} * @memberof TableSearchChangeResponse */ concreteType: TableSearchChangeResponseConcreteTypeEnum; /** * The resulting status of the search after the change. * @type {boolean} * @memberof TableSearchChangeResponse */ searchEnabled?: boolean; } /** * @export */ export declare const TableSearchChangeResponseConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_table_TableSearchChangeResponse: "org.sagebionetworks.repo.model.table.TableSearchChangeResponse"; }; export type TableSearchChangeResponseConcreteTypeEnum = typeof TableSearchChangeResponseConcreteTypeEnum[keyof typeof TableSearchChangeResponseConcreteTypeEnum]; /** * Check if a given object implements the TableSearchChangeResponse interface. */ export declare function instanceOfTableSearchChangeResponse(value: object): value is TableSearchChangeResponse; export declare function TableSearchChangeResponseFromJSON(json: any): TableSearchChangeResponse; export declare function TableSearchChangeResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TableSearchChangeResponse; export declare function TableSearchChangeResponseToJSON(json: any): TableSearchChangeResponse; export declare function TableSearchChangeResponseToJSONTyped(value?: TableSearchChangeResponse | null, ignoreDiscriminator?: boolean): any;