DetectorModelTransitionEvent

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

Specifies the actions performed and the next state entered when a condition evaluates to TRUE.

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The actions to be performed.

Link copied to clipboard

A Boolean expression that when TRUE causes the actions to be performed and the nextState to be entered.

Link copied to clipboard

The name of the event.

Link copied to clipboard

The next state to enter.