/** * 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 { EntityTypeMetadata } from './EntityTypeMetadata'; /** * Metadata about entities * @export * @interface EntityRegistry */ export interface EntityRegistry { /** * The full path of the entity schema. * @type {Array} * @memberof EntityRegistry */ entityTypes?: Array; } /** * Check if a given object implements the EntityRegistry interface. */ export declare function instanceOfEntityRegistry(value: object): value is EntityRegistry; export declare function EntityRegistryFromJSON(json: any): EntityRegistry; export declare function EntityRegistryFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntityRegistry; export declare function EntityRegistryToJSON(json: any): EntityRegistry; export declare function EntityRegistryToJSONTyped(value?: EntityRegistry | null, ignoreDiscriminator?: boolean): any;