/** * 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 { MigrationTypeCount } from './MigrationTypeCount'; /** * List of MigrationTypeCount records * @export * @interface MigrationTypeCounts */ export interface MigrationTypeCounts { /** * * @type {string} * @memberof MigrationTypeCounts */ concreteType: MigrationTypeCountsConcreteTypeEnum; /** * * @type {Array} * @memberof MigrationTypeCounts */ list?: Array; } /** * @export */ export declare const MigrationTypeCountsConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_migration_MigrationTypeCounts: "org.sagebionetworks.repo.model.migration.MigrationTypeCounts"; }; export type MigrationTypeCountsConcreteTypeEnum = typeof MigrationTypeCountsConcreteTypeEnum[keyof typeof MigrationTypeCountsConcreteTypeEnum]; /** * Check if a given object implements the MigrationTypeCounts interface. */ export declare function instanceOfMigrationTypeCounts(value: object): value is MigrationTypeCounts; export declare function MigrationTypeCountsFromJSON(json: any): MigrationTypeCounts; export declare function MigrationTypeCountsFromJSONTyped(json: any, ignoreDiscriminator: boolean): MigrationTypeCounts; export declare function MigrationTypeCountsToJSON(json: any): MigrationTypeCounts; export declare function MigrationTypeCountsToJSONTyped(value?: MigrationTypeCounts | null, ignoreDiscriminator?: boolean): any;