MUTATE_VARIABLES
Manipulate the value of a specific variable by using the value of another variable.
See operations.
Example JSON
{
"action": "MUTATE_VARIABLES",
"operation": "ADD",
"source": "otherVar",
"variable": "varName"
}
MGS Natlang
Example
script {
mutate varName + otherVar;
}
Dictionary entry
mutate $variable:string $operation:operator $source:string (;)