Package version:

Interface IfConditionActivity

This activity evaluates a boolean expression and executes either the activities under the ifTrueActivities property or the ifFalseActivities property depending on the result of the expression.

Hierarchy

Properties

dependsOn?: ActivityDependency[]

Activity depends on condition.

description?: string

Activity description.

expression: Expression

An expression that would evaluate to Boolean. This is used to determine the block of activities (ifTrueActivities or ifFalseActivities) that will be executed.

ifFalseActivities?: ActivityUnion[]

List of activities to execute if expression is evaluated to false. This is an optional property and if not provided, the activity will exit without any action.

ifTrueActivities?: ActivityUnion[]

List of activities to execute if expression is evaluated to true. This is an optional property and if not provided, the activity will exit without any action.

name: string

Activity name.

type: "IfCondition"

Polymorphic discriminator, which specifies the different types this object can be

userProperties?: UserProperty[]

Activity user properties.

Generated using TypeDoc