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

GoogleCloudDialogflowCxV3beta1WebhookResponse

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

The response message for a webhook call.

interface GoogleCloudDialogflowCxV3beta1WebhookResponse {
payload?: {
[key: string]: any;
}
;
targetFlow?: string;
targetPage?: string;
}

§Properties

§

The fulfillment response to send to the user. This field can be omitted by the webhook if it does not intend to send any response to the user.

§

Information about page status. This field can be omitted by the webhook if it does not intend to modify page status.

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

Value to append directly to QueryResult.webhook_payloads.

§

Information about session status. This field can be omitted by the webhook if it does not intend to modify session status.

§
targetFlow?: string
[src]

The target flow to transition to. Format: projects//locations//agents//flows/.

§
targetPage?: string
[src]

The target page to transition to. Format: projects//locations//agents//flows//pages/.