Google Cloud Dialogflow V2Intent Parameter Args
data class GoogleCloudDialogflowV2IntentParameterArgs(val defaultValue: Output<String>? = null, val displayName: Output<String>, val entityTypeDisplayName: Output<String>? = null, val isList: Output<Boolean>? = null, val mandatory: Output<Boolean>? = null, val name: Output<String>? = null, val prompts: Output<List<String>>? = null, val value: Output<String>? = null) : ConvertibleToJava<GoogleCloudDialogflowV2IntentParameterArgs>
Represents intent parameters.
Properties
Link copied to clipboard
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
.
Link copied to clipboard
The name of the parameter.
Link copied to clipboard
Optional. The name of the entity type, prefixed with @
, that describes values of the parameter. If the parameter is required, this must be provided.
Link copied to clipboard
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
.