/** * 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. */ /** * List of MigrationType names * @export * @interface MigrationTypeNames */ export interface MigrationTypeNames { /** * * @type {Array} * @memberof MigrationTypeNames */ list?: Array; } /** * Check if a given object implements the MigrationTypeNames interface. */ export declare function instanceOfMigrationTypeNames(value: object): value is MigrationTypeNames; export declare function MigrationTypeNamesFromJSON(json: any): MigrationTypeNames; export declare function MigrationTypeNamesFromJSONTyped(json: any, ignoreDiscriminator: boolean): MigrationTypeNames; export declare function MigrationTypeNamesToJSON(json: any): MigrationTypeNames; export declare function MigrationTypeNamesToJSONTyped(value?: MigrationTypeNames | null, ignoreDiscriminator?: boolean): any;