/** * Assisted Migration Agent 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. */ /** * * @export * @interface MigrationIssue */ export interface MigrationIssue { /** * * @type {string} * @memberof MigrationIssue */ id?: string; /** * * @type {string} * @memberof MigrationIssue */ label: string; /** * * @type {string} * @memberof MigrationIssue */ assessment: string; /** * * @type {number} * @memberof MigrationIssue */ count: number; } /** * Check if a given object implements the MigrationIssue interface. */ export declare function instanceOfMigrationIssue(value: object): value is MigrationIssue; export declare function MigrationIssueFromJSON(json: any): MigrationIssue; export declare function MigrationIssueFromJSONTyped(json: any, ignoreDiscriminator: boolean): MigrationIssue; export declare function MigrationIssueToJSON(json: any): MigrationIssue; export declare function MigrationIssueToJSONTyped(value?: MigrationIssue | null, ignoreDiscriminator?: boolean): any;