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";
typeSchema?: GoogleCloudDialogflowCxV3TypeSchema;
}