Package version:

Switch cases with have a value and corresponding activities.

interface SwitchCase {
    activities?: ActivityUnion[];
    value?: string;
}

Properties

Properties

activities?: ActivityUnion[]

List of activities to execute for satisfied case condition.

value?: string

Expected value that satisfies the expression result of the 'on' property.