/** * 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 { FieldDescription } from './FieldDescription'; /** * Metadata to describe the migration of a generic field * @export * @interface FieldMigrationSpec */ export interface FieldMigrationSpec { /** * * @type {FieldDescription} * @memberof FieldMigrationSpec */ source?: FieldDescription; /** * * @type {FieldDescription} * @memberof FieldMigrationSpec */ destination?: FieldDescription; } /** * Check if a given object implements the FieldMigrationSpec interface. */ export declare function instanceOfFieldMigrationSpec(value: object): value is FieldMigrationSpec; export declare function FieldMigrationSpecFromJSON(json: any): FieldMigrationSpec; export declare function FieldMigrationSpecFromJSONTyped(json: any, ignoreDiscriminator: boolean): FieldMigrationSpec; export declare function FieldMigrationSpecToJSON(json: any): FieldMigrationSpec; export declare function FieldMigrationSpecToJSONTyped(value?: FieldMigrationSpec | null, ignoreDiscriminator?: boolean): any;