/** * 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 { AdminResponse } from './AdminResponse'; /** * Async Migration response will implement this type of AsynchronousResponseBody * @export * @interface AsyncMigrationResponse */ export interface AsyncMigrationResponse { /** * * @type {string} * @memberof AsyncMigrationResponse */ concreteType: AsyncMigrationResponseConcreteTypeEnum; /** * * @type {AdminResponse} * @memberof AsyncMigrationResponse */ adminResponse?: AdminResponse; } /** * @export */ export declare const AsyncMigrationResponseConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_migration_AsyncMigrationResponse: "org.sagebionetworks.repo.model.migration.AsyncMigrationResponse"; }; export type AsyncMigrationResponseConcreteTypeEnum = typeof AsyncMigrationResponseConcreteTypeEnum[keyof typeof AsyncMigrationResponseConcreteTypeEnum]; /** * Check if a given object implements the AsyncMigrationResponse interface. */ export declare function instanceOfAsyncMigrationResponse(value: object): value is AsyncMigrationResponse; export declare function AsyncMigrationResponseFromJSON(json: any): AsyncMigrationResponse; export declare function AsyncMigrationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AsyncMigrationResponse; export declare function AsyncMigrationResponseToJSON(json: any): AsyncMigrationResponse; export declare function AsyncMigrationResponseToJSONTyped(value?: AsyncMigrationResponse | null, ignoreDiscriminator?: boolean): any;