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

DialogState

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

The current state of the conversation with the user.

interface DialogState {
dialogAction?: DialogAction | null;
intent?: IntentOverride | null;
sessionAttributes?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
dialogAction?: DialogAction | null
[src]
§
intent?: IntentOverride | null
[src]
§
sessionAttributes?: {
[key: string]: string | null | undefined;
}
| null
[src]

Map of key/value pairs representing session-specific context information. It contains application information passed between Amazon Lex and a client application.