combiningFunction property

String? combiningFunction
getter/setter pair

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. Possible string values are:

  • "AND" : All Conditions must be true for the BasicLevel to be true.
  • "OR" : If at least one Condition is true, then the BasicLevel is true.

Implementation

core.String? combiningFunction;