/** * 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. */ import type { MaterializedView } from './MaterializedView'; import type { SearchIndex } from './SearchIndex'; import type { VirtualTable } from './VirtualTable'; /** * @type HasDefiningSql * The object that implements this interface contains an SQL query that defines its content. * @export */ export type HasDefiningSql = { concreteType: 'org.sagebionetworks.repo.model.search.table.SearchIndex'; } & SearchIndex | { concreteType: 'org.sagebionetworks.repo.model.table.MaterializedView'; } & MaterializedView | { concreteType: 'org.sagebionetworks.repo.model.table.VirtualTable'; } & VirtualTable; export declare function HasDefiningSqlFromJSON(json: any): HasDefiningSql; export declare function HasDefiningSqlFromJSONTyped(json: any, ignoreDiscriminator: boolean): HasDefiningSql; export declare function HasDefiningSqlToJSON(json: any): any; export declare function HasDefiningSqlToJSONTyped(value?: HasDefiningSql | null, ignoreDiscriminator?: boolean): any;