/** * 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 VMDevice */ export interface VMDevice { /** * Type of virtual device (e.g., cdrom, floppy, usb, serial, parallel) * @type {string} * @memberof VMDevice */ kind?: string; } /** * Check if a given object implements the VMDevice interface. */ export declare function instanceOfVMDevice(value: object): value is VMDevice; export declare function VMDeviceFromJSON(json: any): VMDevice; export declare function VMDeviceFromJSONTyped(json: any, ignoreDiscriminator: boolean): VMDevice; export declare function VMDeviceToJSON(json: any): VMDevice; export declare function VMDeviceToJSONTyped(value?: VMDevice | null, ignoreDiscriminator?: boolean): any;