/** * 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 { FieldMigrationSpec } from './FieldMigrationSpec'; /** * Metadata to describe the migration of an entity type * @export * @interface EntityTypeMigrationSpec */ export interface EntityTypeMigrationSpec { /** * The type of entity * @type {string} * @memberof EntityTypeMigrationSpec */ entityType?: string; /** * * @type {Array} * @memberof EntityTypeMigrationSpec */ fields?: Array; } /** * Check if a given object implements the EntityTypeMigrationSpec interface. */ export declare function instanceOfEntityTypeMigrationSpec(value: object): value is EntityTypeMigrationSpec; export declare function EntityTypeMigrationSpecFromJSON(json: any): EntityTypeMigrationSpec; export declare function EntityTypeMigrationSpecFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntityTypeMigrationSpec; export declare function EntityTypeMigrationSpecToJSON(json: any): EntityTypeMigrationSpec; export declare function EntityTypeMigrationSpecToJSONTyped(value?: EntityTypeMigrationSpec | null, ignoreDiscriminator?: boolean): any;