LicenseEntitlement

data class LicenseEntitlement(val allowCheckIn: Boolean? = null, val maxCount: Int? = null, val name: String, val overage: Boolean? = null, val unit: String, val value: String? = null)

Constructors

Link copied to clipboard
constructor(allowCheckIn: Boolean? = null, maxCount: Int? = null, name: String, overage: Boolean? = null, unit: String, value: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val allowCheckIn: Boolean? = null

Indicates whether check-ins are allowed.

Link copied to clipboard
val maxCount: Int? = null

Maximum entitlement count. Use if the unit is not None.

Link copied to clipboard

Entitlement name.

Link copied to clipboard
val overage: Boolean? = null

Indicates whether overages are allowed.

Link copied to clipboard

Entitlement unit.

Link copied to clipboard
val value: String? = null

Entitlement resource. Use only if the unit is None.