/** * 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. */ /** * Data about a migration type according to the migration source. * @export * @interface TypeData */ export interface TypeData { /** * * @type {string} * @memberof TypeData */ migrationType?: string; /** * The database column name of the backupId for this type. * @type {string} * @memberof TypeData */ backupIdColumnName?: string; } /** * Check if a given object implements the TypeData interface. */ export declare function instanceOfTypeData(value: object): value is TypeData; export declare function TypeDataFromJSON(json: any): TypeData; export declare function TypeDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): TypeData; export declare function TypeDataToJSON(json: any): TypeData; export declare function TypeDataToJSONTyped(value?: TypeData | null, ignoreDiscriminator?: boolean): any;