LegacyPlaybookApiTriggerCondition

LegacyPlaybookApiTriggerCondition represents a condition for a workflow trigger.

JSON representation
{
  "fieldName": string,
  "value": string,
  "matchType": enum (ConditionMatchType)
}
Fields
fieldName

string

Required. FieldName is the name of the field to check.

value

string

Required. Value is the value to compare against.

matchType

enum (ConditionMatchType)

Required. MatchType is the operator to use for comparison.

ConditionMatchType

ConditionMatchType is the operator to use for comparison.

Enums
CONDITION_MATCH_TYPE_UNSPECIFIED The condition match type is unspecified.
EQUAL The condition match type is equal.
CONTAINS The condition match type is contains.
STARTS_WITH The condition match type is starts with.
GREATER_THAN The condition match type is greater than.
LESSER_THAN The condition match type is less than.
NOT_EQUAL The condition match type is not equal.
NOT_CONTAINS The condition match type is not contains.
IS_EMPTY The condition match type is is empty.
IS_NOT_EMPTY The condition match type is is not empty.