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

GoogleCloudDialogflowCxV3beta1SessionInfo

import type { GoogleCloudDialogflowCxV3beta1SessionInfo } from "https://googleapis.deno.dev/v1/dialogflow:v3.ts";

Represents session information communicated to and from the webhook.

interface GoogleCloudDialogflowCxV3beta1SessionInfo {
parameters?: {
[key: string]: any;
}
;
session?: string;
}

§Properties

§
parameters?: {
[key: string]: any;
}
[src]

Optional for WebhookRequest. Optional for WebhookResponse. All parameters collected from forms and intents during the session. Parameters can be created, updated, or removed by the webhook. To remove a parameter from the session, the webhook should explicitly set the parameter value to null in WebhookResponse. The map is keyed by parameters' display names.

§
session?: string
[src]

Always present for WebhookRequest. Ignored for WebhookResponse. The unique identifier of the session. This field can be used by the webhook to identify a session. Format: projects//locations//agents//sessions/ or projects//locations//agents//environments//sessions/ if environment is specified.