Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Property

UI Field Name

Description

Specifications

Required

Mutually Exclusive With

Anchor
VC firstValue
VC firstValue
firstValue

First Value

First Value of the condition evaluation.


Default is an empty/blank string.

N


Anchor
VC operator
VC operator

operator

Operator

Operator of the condition evaluation.

Valid values:

  • As String = , As Value 1.

  • As String != , As Value 2.

  • As String > , As Value 3.

  • As String >= , As Value 4.

  • As String <, As Value 5.

  • As String <= , As Value 6.

  • As String regex , As Value 7.

  • As String contains , As Value 8.

Default is =(1).

N


Anchor
VC secondValue
VC secondValue
secondValue

Second Value

Second Value of the condition evaluation.

Default is an empty/blank string.

N


Variable Condition: JSON and XML Examples

XML

JSON

Expand
titleXML
<variableCondition>
       <firstValue>${_varToLowerCase('variableName')}</firstValue>
       <operator>=</operator>
       <secondValue>${var2}</secondValue>
</variableCondition>


Expand
titleJSON

"condition": {
         "firstValue": "${_varToLowerCase('variableName')}",
         "operator": "=",
         "secondValue": "${var2}",
         "type": "Variable"
}


Anchor
Step Conditions
Step Conditions
Step Conditions

...