Package version:

Interface UntilActivity

This activity executes inner activities until the specified boolean expression results to true or timeout is reached, whichever is earlier.

Hierarchy

Properties

activities: ActivityUnion[]

List of activities to execute.

dependsOn?: ActivityDependency[]

Activity depends on condition.

description?: string

Activity description.

expression: Expression

An expression that would evaluate to Boolean. The loop will continue until this expression evaluates to true

name: string

Activity name.

timeout?: any

Specifies the timeout for the activity to run. If there is no value specified, it takes the value of TimeSpan.FromDays(7) which is 1 week as default. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])). Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

type: "Until"

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

userProperties?: UserProperty[]

Activity user properties.

Generated using TypeDoc