/** * 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 VMNIC */ export interface VMNIC { /** * MAC address of the virtual NIC * @type {string} * @memberof VMNIC */ mac?: string; /** * Reference to the network this NIC is connected to * @type {string} * @memberof VMNIC */ network?: string; /** * Index of the NIC within the VirtualMachine * @type {number} * @memberof VMNIC */ index?: number; } /** * Check if a given object implements the VMNIC interface. */ export declare function instanceOfVMNIC(value: object): value is VMNIC; export declare function VMNICFromJSON(json: any): VMNIC; export declare function VMNICFromJSONTyped(json: any, ignoreDiscriminator: boolean): VMNIC; export declare function VMNICToJSON(json: any): VMNIC; export declare function VMNICToJSONTyped(value?: VMNIC | null, ignoreDiscriminator?: boolean): any;