/** * 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 { VCenter } from './VCenter.js'; import type { Infra } from './Infra.js'; import type { VMs } from './VMs.js'; /** * * @export * @interface InventoryData */ export interface InventoryData { /** * * @type {VCenter} * @memberof InventoryData */ vcenter?: VCenter; /** * * @type {VMs} * @memberof InventoryData */ vms: VMs; /** * * @type {Infra} * @memberof InventoryData */ infra: Infra; } /** * Check if a given object implements the InventoryData interface. */ export declare function instanceOfInventoryData(value: object): value is InventoryData; export declare function InventoryDataFromJSON(json: any): InventoryData; export declare function InventoryDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): InventoryData; export declare function InventoryDataToJSON(json: any): InventoryData; export declare function InventoryDataToJSONTyped(value?: InventoryData | null, ignoreDiscriminator?: boolean): any;