BotDialogStateArgs

data class BotDialogStateArgs(val dialogAction: Output<BotDialogActionArgs>? = null, val intent: Output<BotIntentOverrideArgs>? = null, val sessionAttributes: Output<List<BotSessionAttributeArgs>>? = null) : ConvertibleToJava<BotDialogStateArgs>

The current state of the conversation with the user.

Constructors

Link copied to clipboard
fun BotDialogStateArgs(dialogAction: Output<BotDialogActionArgs>? = null, intent: Output<BotIntentOverrideArgs>? = null, sessionAttributes: Output<List<BotSessionAttributeArgs>>? = null)

Functions

Link copied to clipboard
open override fun toJava(): BotDialogStateArgs

Properties

Link copied to clipboard
val dialogAction: Output<BotDialogActionArgs>? = null

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

Link copied to clipboard
val intent: Output<BotIntentOverrideArgs>? = null

Override settings to configure the intent state.

Link copied to clipboard

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