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

GoogleCloudDialogflowV2beta1IntentParameter

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

Represents intent parameters.

interface GoogleCloudDialogflowV2beta1IntentParameter {
defaultValue?: string;
displayName?: string;
entityTypeDisplayName?: string;
isList?: boolean;
mandatory?: boolean;
name?: string;
prompts?: string[];
value?: string;
}

§Properties

§
defaultValue?: string
[src]

Optional. The default value to use when the value yields an empty result. Default values can be extracted from contexts by using the following syntax: #context_name.parameter_name.

§
displayName?: string
[src]

Required. The name of the parameter.

§
entityTypeDisplayName?: string
[src]

Optional. The name of the entity type, prefixed with @, that describes values of the parameter. If the parameter is required, this must be provided.

§
isList?: boolean
[src]

Optional. Indicates whether the parameter represents a list of values.

§
mandatory?: boolean
[src]

Optional. Indicates whether the parameter is required. That is, whether the intent cannot be completed without collecting the parameter value.

§
name?: string
[src]

The unique identifier of this parameter.

§
prompts?: string[]
[src]

Optional. The collection of prompts that the agent can present to the user in order to collect a value for the parameter.

§
value?: string
[src]

Optional. The definition of the parameter value. It can be: - a constant string, - a parameter value defined as $parameter_name, - an original parameter value defined as $parameter_name.original, - a parameter value from some context defined as #context_name.parameter_name.