BotDialogState

data class BotDialogState(val dialogAction: BotDialogAction? = null, val intent: BotIntentOverride? = null, val sessionAttributes: List<BotSessionAttribute>? = null)

The current state of the conversation with the user.

Constructors

Link copied to clipboard
constructor(dialogAction: BotDialogAction? = null, intent: BotIntentOverride? = null, sessionAttributes: List<BotSessionAttribute>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

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

Link copied to clipboard

Override settings to configure the intent state.

Link copied to clipboard

List of session attributes to be applied when the conversation reaches this step.