SafetyRuleRuleConfig

data class SafetyRuleRuleConfig(val inverted: Boolean, val threshold: Int, val type: SafetyRuleRuleType)

The rule configuration for an assertion rule or gating rule. This is the criteria that you set for specific assertion controls (routing controls) or gating controls. This configuration specifies how many controls must be enabled after a transaction completes.

Constructors

Link copied to clipboard
constructor(inverted: Boolean, threshold: Int, type: SafetyRuleRuleType)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Logical negation of the rule. If the rule would usually evaluate true, it's evaluated as false, and vice versa.

Link copied to clipboard

The value of N, when you specify an ATLEAST rule type. That is, Threshold is the number of controls that must be set when you specify an ATLEAST type.

Link copied to clipboard

A rule can be one of the following: ATLEAST , AND , or OR .