/** * 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 { RenameData } from './RenameData'; /** * Metadata about migrating entities * @export * @interface EntityMigration */ export interface EntityMigration { /** * The full path of the entity schema. * @type {Array} * @memberof EntityMigration */ toRename?: Array; } /** * Check if a given object implements the EntityMigration interface. */ export declare function instanceOfEntityMigration(value: object): value is EntityMigration; export declare function EntityMigrationFromJSON(json: any): EntityMigration; export declare function EntityMigrationFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntityMigration; export declare function EntityMigrationToJSON(json: any): EntityMigration; export declare function EntityMigrationToJSONTyped(value?: EntityMigration | null, ignoreDiscriminator?: boolean): any;