Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DialogAction

import type { DialogAction } from "https://aws-api.deno.dev/v0.4/services/lexmodelsv2.ts?docs=full";

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

interface DialogAction {
slotToElicit?: string | null;
suppressNextMessage?: boolean | null;
}

§Properties

§
slotToElicit?: string | null
[src]

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

§
suppressNextMessage?: boolean | null
[src]

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

§

The action that the bot should execute.