TriggerPredicate

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

Constructors

Link copied to clipboard
constructor(conditions: List<TriggerPredicateCondition>, 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. See Conditions.

Link copied to clipboard
val logical: String? = null

How to handle multiple conditions. Defaults to AND. Valid values are AND or ANY.