Access Level Basic
data class AccessLevelBasic(val combiningFunction: String? = null, val conditions: List<AccessLevelBasicCondition>)
Constructors
Link copied to clipboard
fun AccessLevelBasic(combiningFunction: String? = null, conditions: List<AccessLevelBasicCondition>)
Types
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 value is AND
. Possible values are: AND
, OR
.