/** * 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. */ /** * Represents the structure of vm-migration-detective library inspection concerns * @export * @interface VmInspectionConcern */ export interface VmInspectionConcern { /** * Short label identifying the concern * @type {string} * @memberof VmInspectionConcern */ label: string; /** * * @type {string} * @memberof VmInspectionConcern */ message: string; /** * * @type {string} * @memberof VmInspectionConcern */ category: string; } /** * Check if a given object implements the VmInspectionConcern interface. */ export declare function instanceOfVmInspectionConcern(value: object): value is VmInspectionConcern; export declare function VmInspectionConcernFromJSON(json: any): VmInspectionConcern; export declare function VmInspectionConcernFromJSONTyped(json: any, ignoreDiscriminator: boolean): VmInspectionConcern; export declare function VmInspectionConcernToJSON(json: any): VmInspectionConcern; export declare function VmInspectionConcernToJSONTyped(value?: VmInspectionConcern | null, ignoreDiscriminator?: boolean): any;