IDRangePatch

data class IDRangePatch(val max: Int? = null, val min: Int? = null)

IDRange provides a min/max of an allowed range of IDs.

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val max: Int? = null

max is the end of the range, inclusive.

Link copied to clipboard
val min: Int? = null

min is the start of the range, inclusive.