BotConditionalSpecification

data class BotConditionalSpecification(val conditionalBranches: List<BotConditionalBranch>, val defaultBranch: BotDefaultConditionalBranch, val isActive: Boolean)

Constructors

Link copied to clipboard
constructor(conditionalBranches: List<BotConditionalBranch>, defaultBranch: BotDefaultConditionalBranch, isActive: Boolean)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

A list of conditional branches. A conditional branch is made up of a condition, a response and a next step. The response and next step are executed when the condition is true.

Link copied to clipboard

The conditional branch that should be followed when the conditions for other branches are not satisfied. A conditional branch is made up of a condition, a response and a next step.

Link copied to clipboard

Determines whether a conditional branch is active. When IsActive is false, the conditions are not evaluated.