BotDialogAction

data class BotDialogAction(val slotToElicit: String? = null, val suppressNextMessage: Boolean? = null, val type: BotDialogActionType)

Defines the action that the bot executes at runtime when the conversation reaches this step.

Constructors

Link copied to clipboard
constructor(slotToElicit: String? = null, suppressNextMessage: Boolean? = null, type: BotDialogActionType)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val slotToElicit: String? = null

If the dialog action is ElicitSlot, defines the slot to elicit from the user.

Link copied to clipboard

When true the next message for the intent is not used.

Link copied to clipboard

The action that the bot should execute.