/** * 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. */ /** * * @export */ export declare const EntityType: { readonly project: "project"; readonly folder: "folder"; readonly file: "file"; readonly table: "table"; readonly link: "link"; readonly entityview: "entityview"; readonly dockerrepo: "dockerrepo"; readonly submissionview: "submissionview"; readonly dataset: "dataset"; readonly datasetcollection: "datasetcollection"; readonly materializedview: "materializedview"; readonly virtualtable: "virtualtable"; readonly recordset: "recordset"; readonly searchindex: "searchindex"; }; export type EntityType = typeof EntityType[keyof typeof EntityType]; export declare function instanceOfEntityType(value: any): boolean; export declare function EntityTypeFromJSON(json: any): EntityType; export declare function EntityTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntityType; export declare function EntityTypeToJSON(value?: EntityType | null): any; export declare function EntityTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): EntityType;