/** * The MacAddress model module. * @module Ntnx/MacAddress * @version 4.4.1 * @class MacAddress * @extends NetworkingBaseModel */ export default class MacAddress extends NetworkingBaseModel { /** * Returns Hexadecimal representation of this MAC address. * @return {string} */ getValue(): string; /** * Sets Hexadecimal representation of this MAC address. * @param {string} value Hexadecimal representation of this MAC address. */ setValue(value: string): void; value: string; /** * @return {MacType} */ getMacType(): MacType; /** * @param {MacType} macType */ setMacType(macType: MacType): void; macType: string; #private; } import NetworkingBaseModel from "./NetworkingBaseModel"; import MacType from "./MacType";