Boolean
In the Conditions block, you need to enter an expression that produces a Boolean result. For example:
| ■ | ${ticketPrice} > 30 |
| ■ | ${selectedShow} == "Friends" |
| ■ | ${selectedShow} == "Friends" && ${ticketType} == "VIP" |
| ■ | ${selectedShow} == "Friends" || ${selectedShow} == "Chernobyl" |
| ■ | ${ticketPrice} >= 30 || ${ticketPrice} <= 30 |
Voca supports the following Boolean operators:
| ■ | Greater / less than: |
| ● | > |
| ● | < |
| ■ | Greater / less than or equals to: |
| ● | >= |
| ● | <= |
| ■ | Equals / not equals: |
| ● | == |
| ● | != |