/** * 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. */ /** * Request count for migration type. * @export * @interface AsyncMigrationTypeCountRequest */ export interface AsyncMigrationTypeCountRequest { /** * * @type {string} * @memberof AsyncMigrationTypeCountRequest */ concreteType: AsyncMigrationTypeCountRequestConcreteTypeEnum; /** * The migration type * @type {string} * @memberof AsyncMigrationTypeCountRequest */ type?: string; } /** * @export */ export declare const AsyncMigrationTypeCountRequestConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_migration_AsyncMigrationTypeCountRequest: "org.sagebionetworks.repo.model.migration.AsyncMigrationTypeCountRequest"; }; export type AsyncMigrationTypeCountRequestConcreteTypeEnum = typeof AsyncMigrationTypeCountRequestConcreteTypeEnum[keyof typeof AsyncMigrationTypeCountRequestConcreteTypeEnum]; /** * Check if a given object implements the AsyncMigrationTypeCountRequest interface. */ export declare function instanceOfAsyncMigrationTypeCountRequest(value: object): value is AsyncMigrationTypeCountRequest; export declare function AsyncMigrationTypeCountRequestFromJSON(json: any): AsyncMigrationTypeCountRequest; export declare function AsyncMigrationTypeCountRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AsyncMigrationTypeCountRequest; export declare function AsyncMigrationTypeCountRequestToJSON(json: any): AsyncMigrationTypeCountRequest; export declare function AsyncMigrationTypeCountRequestToJSONTyped(value?: AsyncMigrationTypeCountRequest | null, ignoreDiscriminator?: boolean): any;