/** * 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 GuestNetwork */ export interface GuestNetwork { /** * Name of the network device inside the guest OS * @type {string} * @memberof GuestNetwork */ device?: string; /** * MAC address as seen by the guest OS * @type {string} * @memberof GuestNetwork */ mac?: string; /** * IP address assigned to this interface * @type {string} * @memberof GuestNetwork */ ip?: string; /** * Network prefix length (subnet mask in CIDR notation) * @type {number} * @memberof GuestNetwork */ prefixLength?: number; /** * Network name as reported by the guest OS * @type {string} * @memberof GuestNetwork */ network?: string; } /** * Check if a given object implements the GuestNetwork interface. */ export declare function instanceOfGuestNetwork(value: object): value is GuestNetwork; export declare function GuestNetworkFromJSON(json: any): GuestNetwork; export declare function GuestNetworkFromJSONTyped(json: any, ignoreDiscriminator: boolean): GuestNetwork; export declare function GuestNetworkToJSON(json: any): GuestNetwork; export declare function GuestNetworkToJSONTyped(value?: GuestNetwork | null, ignoreDiscriminator?: boolean): any;