PortRangeResponse

data class PortRangeResponse(val portEnd: Int? = null, val portStart: Int? = null, val protocol: String? = null)

The port range.

Constructors

Link copied to clipboard
constructor(portEnd: Int? = null, portStart: Int? = null, protocol: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val portEnd: Int? = null

The maximum port that is included in the range. It should be ranged from 1 to 65535, and be greater than or equal to portStart.

Link copied to clipboard
val portStart: Int? = null

The minimum port that is included in the range. It should be ranged from 1 to 65535, and be less than or equal to portEnd.

Link copied to clipboard
val protocol: String? = null

The network protocol of the port.