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

GoogleCloudDialogflowCxV3ParameterDefinition

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

Defines the properties of a parameter. Used to define parameters used in the agent and the input / output parameters for each fulfillment.

interface GoogleCloudDialogflowCxV3ParameterDefinition {
description?: string;
name?: string;
type?:
| "PARAMETER_TYPE_UNSPECIFIED"
| "STRING"
| "NUMBER"
| "BOOLEAN"
| "NULL"
| "OBJECT"
| "LIST";
}

§Properties

§
description?: string
[src]

Human-readable description of the parameter. Limited to 300 characters.

§
name?: string
[src]

Required. Name of parameter.

§
type?: "PARAMETER_TYPE_UNSPECIFIED" | "STRING" | "NUMBER" | "BOOLEAN" | "NULL" | "OBJECT" | "LIST"
[src]

Type of parameter.

§

Optional. Type schema of parameter.