/** * 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. */ /** * Metadata about entities * @export * @interface EntityTypeMetadata */ export interface EntityTypeMetadata { /** * The Name of this entity. * @type {string} * @memberof EntityTypeMetadata */ name: string; /** * The display name of this entity. * @type {string} * @memberof EntityTypeMetadata */ displayName?: string; /** * The class name of this entity. * @type {string} * @memberof EntityTypeMetadata */ className?: string; /** * Type of the Entity * @type {string} * @memberof EntityTypeMetadata */ entityType?: EntityTypeMetadataEntityTypeEnum; /** * The full path of the entity schema. * @type {string} * @memberof EntityTypeMetadata */ defaultParentPath?: string; /** * The full path of the entity schema. * @type {Array} * @memberof EntityTypeMetadata */ validParentTypes?: Array; /** * The list of aliases that can be used to look an entity type with a query. * @type {Array} * @memberof EntityTypeMetadata */ aliases?: Array; } /** * @export */ export declare const EntityTypeMetadataEntityTypeEnum: { 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 EntityTypeMetadataEntityTypeEnum = typeof EntityTypeMetadataEntityTypeEnum[keyof typeof EntityTypeMetadataEntityTypeEnum]; /** * Check if a given object implements the EntityTypeMetadata interface. */ export declare function instanceOfEntityTypeMetadata(value: object): value is EntityTypeMetadata; export declare function EntityTypeMetadataFromJSON(json: any): EntityTypeMetadata; export declare function EntityTypeMetadataFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntityTypeMetadata; export declare function EntityTypeMetadataToJSON(json: any): EntityTypeMetadata; export declare function EntityTypeMetadataToJSONTyped(value?: EntityTypeMetadata | null, ignoreDiscriminator?: boolean): any;