/** * 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. */ import type { VmInspectionConcern } from './VmInspectionConcern.js'; /** * VirtualMachine Inspection results * @export * @interface VmInspectionResults */ export interface VmInspectionResults { /** * * @type {Array} * @memberof VmInspectionResults */ concerns?: Array; } /** * Check if a given object implements the VmInspectionResults interface. */ export declare function instanceOfVmInspectionResults(value: object): value is VmInspectionResults; export declare function VmInspectionResultsFromJSON(json: any): VmInspectionResults; export declare function VmInspectionResultsFromJSONTyped(json: any, ignoreDiscriminator: boolean): VmInspectionResults; export declare function VmInspectionResultsToJSON(json: any): VmInspectionResults; export declare function VmInspectionResultsToJSONTyped(value?: VmInspectionResults | null, ignoreDiscriminator?: boolean): any;