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

net.minidev.ovh.api.xdsl.OvhIP 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.coretypes.OvhIpVersionEnum;

/**
 * Informations about an IP address
 */
public class OvhIP {
	/**
	 * The IP address
	 *
	 * canBeNull && readOnly
	 */
	public String ip;

	/**
	 * canBeNull && readOnly
	 */
	public Long range;

	/**
	 * canBeNull && readOnly
	 */
	public String[] dnsList;

	/**
	 * canBeNull && readOnly
	 */
	public OvhIpVersionEnum version;

	/**
	 * status of the IP
	 *
	 * canBeNull && readOnly
	 */
	public OvhIpStatusEnum status;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy