ConditionIf

[ Interface ]

export interface ConditionIf {
    if: Expression[];
    then: Action[];
    showThenActions?: boolean;
}

If part of a condition.

Properties

Name

Type

Description

if

Expression[]

If expression

then

Action[]

List of actions to be performed if the If expression is true.

showThenActions [ optional ]

boolean

Defines whether or not the list of actions in 'then' should be visible in engineering.

ConditionIf 1:

Available from version 1.12