All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.minidev.ovh.api.xdsl.OvhLAN Maven / Gradle / Ivy

There is a newer version: 1.0.17
Show newest version
package net.minidev.ovh.api.xdsl;

import net.minidev.ovh.api.xdsl.xdslmodemconfig.OvhAddressingTypeEnum;

/**
 * LAN Configuration of the Modem
 */
public class OvhLAN {
	/**
	 * How the LAN interface of the modem is gettig its address
	 *
	 * canBeNull && readOnly
	 */
	public OvhAddressingTypeEnum addressingType;

	/**
	 * The subnet mask of the LAN interface of the modem
	 *
	 * canBeNull && readOnly
	 */
	public String subnetMask;

	/**
	 * The IP address of the LAN interface of the modem
	 *
	 * canBeNull && readOnly
	 */
	public String IPAddress;

	/**
	 * ID of the ongoing todo (NULL if none)
	 *
	 * canBeNull && readOnly
	 */
	public Long taskId;

	/**
	 * Name of the LAN
	 *
	 * canBeNull && readOnly
	 */
	public String lanName;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy