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

GoogleCloudDialogflowCxV3PageInfoFormInfoParameterInfo

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

Represents parameter information.

interface GoogleCloudDialogflowCxV3PageInfoFormInfoParameterInfo {
displayName?: string;
justCollected?: boolean;
required?: boolean;
state?:
| "PARAMETER_STATE_UNSPECIFIED"
| "EMPTY"
| "INVALID"
| "FILLED";
value?: any;
}

§Properties

§
displayName?: string
[src]

Always present for WebhookRequest. Required for WebhookResponse. The human-readable name of the parameter, unique within the form. This field cannot be modified by the webhook.

§
justCollected?: boolean
[src]

Optional for WebhookRequest. Ignored for WebhookResponse. Indicates if the parameter value was just collected on the last conversation turn.

§
required?: boolean
[src]

Optional for both WebhookRequest and WebhookResponse. Indicates whether the parameter is required. Optional parameters will not trigger prompts; however, they are filled if the user specifies them. Required parameters must be filled before form filling concludes.

§
state?: "PARAMETER_STATE_UNSPECIFIED" | "EMPTY" | "INVALID" | "FILLED"
[src]

Always present for WebhookRequest. Required for WebhookResponse. The state of the parameter. This field can be set to INVALID by the webhook to invalidate the parameter; other values set by the webhook will be ignored.

§
value?: any
[src]

Optional for both WebhookRequest and WebhookResponse. The value of the parameter. This field can be set by the webhook to change the parameter value.