Defines a SharedAction Variable component.

SharedAction Variables help specifying variables of a SharedAction.

Set the variable default value through the Variable value property.
Any typescript expression is valid:
• string (with quotes): 'monday'
• number: 2019
• boolean: true
• array: ['monday','friday']
• json: {name: 'wood', age: 35}
• object: this.myObject.data

To access a shared action SharedAction Variable
from any child Action property or variable, use in script mode (TS):
params.<variable-name>
stack['<shared-action-name>'].vars.in.<variable-name>

Name Description
Comment Describes the object comment to include in the documentation report. This property generally contains an explanation about the object.
Is active Defines whether the component is active.
Variable value Defines the default variable value.