TriggerPredicate

data class TriggerPredicate(val conditions: List<TriggerCondition>? = null, val logical: String? = null)

The predicate of this trigger, which defines when it will fire.

Constructors

Link copied to clipboard
constructor(conditions: List<TriggerCondition>? = null, logical: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

A list of the conditions that determine when the trigger will fire.

Link copied to clipboard
val logical: String? = null

An optional field if only one condition is listed. If multiple conditions are listed, then this field is required.