BasicLevelResponse

data class BasicLevelResponse(val combiningFunction: String, val conditions: List<ConditionResponse>)

BasicLevel is an AccessLevel using a set of recommended features.

Constructors

Link copied to clipboard
fun BasicLevelResponse(combiningFunction: String, conditions: List<ConditionResponse>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

How the conditions list should be combined to determine if a request is granted this AccessLevel. If AND is used, each Condition in conditions must be satisfied for the AccessLevel to be applied. If OR is used, at least one Condition in conditions must be satisfied for the AccessLevel to be applied. Default behavior is AND.

Link copied to clipboard

A list of requirements for the AccessLevel to be granted.