ConditionIf
[ Interface ]
export interface ConditionIf {
if: Expression[];
then: Action[];
showThenActions?: boolean;
}
If part of a condition.
Properties
Name | Type | Description |
---|---|---|
if | If expression | |
then | Action[] | List of actions to be performed if the If expression is true. |
showThenActions [ optional ] | Defines whether or not the list of actions in 'then' should be visible in engineering. |
Available from version 1.12 |