IDRange

data class IDRange(val max: Int, val min: Int)

IDRange provides a min/max of an allowed range of IDs. Deprecated: use IDRange from policy API Group instead.

Constructors

Link copied to clipboard
constructor(max: Int, min: Int)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val max: Int

max is the end of the range, inclusive.

Link copied to clipboard
val min: Int

min is the start of the range, inclusive.