GoogleCloudDialogflowV2beta1IntentParameterArgs

data class GoogleCloudDialogflowV2beta1IntentParameterArgs(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<GoogleCloudDialogflowV2beta1IntentParameterArgs>

Represents intent parameters.

Constructors

fun GoogleCloudDialogflowV2beta1IntentParameterArgs(defaultValue: Output<String>? = null, displayName: Output<String>, entityTypeDisplayName: Output<String>? = null, isList: Output<Boolean>? = null, mandatory: Output<Boolean>? = null, name: Output<String>? = null, prompts: Output<List<String>>? = null, value: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): GoogleCloudDialogflowV2beta1IntentParameterArgs

Properties

Link copied to clipboard
val defaultValue: Output<String>? = null

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
val displayName: Output<String>

The name of the parameter.

Link copied to clipboard
val entityTypeDisplayName: Output<String>? = null

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
val isList: Output<Boolean>? = null

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

Link copied to clipboard
val mandatory: Output<Boolean>? = null

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

Link copied to clipboard
val name: Output<String>? = null

The unique identifier of this parameter.

Link copied to clipboard
val prompts: Output<List<String>>? = null

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

Link copied to clipboard
val value: Output<String>? = null

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.