The Operation Result operation will store a result of the specified operation in a variable. The value stored is True or False.
TARGET = getOperationResult(()=>{ });
1
1: Destination
True | The result of the specified operation is success. |
False | The result of the specified operation is unsuccessful. |
Properties | Description |
[Set Result to] | Set a variable which stores the result. |
[Operation] | Set a specified operation. |
(Example)
The Result of Recipe operation will be stored at the specified variable (Var1).
Var1 = getOperationResult(()=>{ sendRecipe(); });