net.minidev.ovh.api.router.OvhDnat Maven / Gradle / Ivy
package net.minidev.ovh.api.router;
/**
* Network Dnat
*/
public class OvhDnat {
/**
* Destination port number
*
* canBeNull && readOnly
*/
public Long destinationPort;
/**
* Protocol (TCP, UDP)
*
* canBeNull && readOnly
*/
public OvhProtocolEnum protocol;
/**
* New destination IP
*
* canBeNull && readOnly
*/
public String newDestinationNet;
/**
* Source IP or network
*
* canBeNull && readOnly
*/
public String sourceNet;
/**
* canBeNull && readOnly
*/
public Long id;
/**
* New destination port number
*
* canBeNull && readOnly
*/
public Long newDestinationPort;
/**
* canBeNull && readOnly
*/
public OvhStatusEnum status;
}