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

net.minidev.ovh.api.router.OvhVpn Maven / Gradle / Ivy

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

/**
 * Virtual Private Network
 */
public class OvhVpn {
	/**
	 * IP you will be connecting from / NULL (allow all)
	 *
	 * canBeNull && readOnly
	 */
	public String clientIp;

	/**
	 * Server's private network
	 *
	 * canBeNull && readOnly
	 */
	public String serverPrivNet;

	/**
	 * Your VPN server IP
	 *
	 * canBeNull && readOnly
	 */
	public String serverIp;

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

	/**
	 * Client's private network
	 *
	 * canBeNull && readOnly
	 */
	public String clientPrivNet;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy