DetectorModelEvent

data class DetectorModelEvent(val actions: List<DetectorModelAction>? = null, val condition: String? = null, val eventName: String)

Specifies the actions to be performed when the condition evaluates to TRUE.

Constructors

Link copied to clipboard
fun DetectorModelEvent(actions: List<DetectorModelAction>? = null, condition: String? = null, eventName: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The actions to be performed.

Link copied to clipboard
val condition: String? = null

The Boolean expression that, when TRUE, causes the actions to be performed. If not present, the actions are performed (=TRUE). If the expression result is not a Boolean value, the actions are not performed (=FALSE).

Link copied to clipboard

The name of the event.