- 4.58.0 (latest)
- 4.57.0
- 4.55.0
- 4.54.0
- 4.53.0
- 4.52.0
- 4.51.0
- 4.50.0
- 4.49.0
- 4.48.0
- 4.47.0
- 4.46.0
- 4.45.0
- 4.43.0
- 4.42.0
- 4.41.0
- 4.40.0
- 4.39.0
- 4.38.0
- 4.37.0
- 4.36.0
- 4.35.0
- 4.34.0
- 4.33.0
- 4.30.0
- 4.29.0
- 4.28.0
- 4.27.0
- 4.26.0
- 4.25.0
- 4.24.0
- 4.23.0
- 4.22.0
- 4.21.0
- 4.20.0
- 4.19.0
- 4.18.0
- 4.17.0
- 4.15.0
- 4.14.0
- 4.13.0
- 4.12.0
- 4.11.0
- 4.10.0
- 4.9.1
- 4.8.6
- 4.7.5
- 4.6.0
- 4.5.11
- 4.4.0
- 4.3.1
public static interface Intent.ParameterOrBuilder extends MessageOrBuilder
Implements
MessageOrBuilderMethods
getDefaultValue()
public abstract String getDefaultValue()
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
.
string default_value = 4 [(.google.api.field_behavior) = OPTIONAL];
Type | Description |
String | The defaultValue. |
getDefaultValueBytes()
public abstract ByteString getDefaultValueBytes()
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
.
string default_value = 4 [(.google.api.field_behavior) = OPTIONAL];
Type | Description |
ByteString | The bytes for defaultValue. |
getDisplayName()
public abstract String getDisplayName()
Required. The name of the parameter.
string display_name = 2;
Type | Description |
String | The displayName. |
getDisplayNameBytes()
public abstract ByteString getDisplayNameBytes()
Required. The name of the parameter.
string display_name = 2;
Type | Description |
ByteString | The bytes for displayName. |
getEntityTypeDisplayName()
public abstract String getEntityTypeDisplayName()
Optional. The name of the entity type, prefixed with @
, that
describes values of the parameter. If the parameter is
required, this must be provided.
string entity_type_display_name = 5 [(.google.api.field_behavior) = OPTIONAL];
Type | Description |
String | The entityTypeDisplayName. |
getEntityTypeDisplayNameBytes()
public abstract ByteString getEntityTypeDisplayNameBytes()
Optional. The name of the entity type, prefixed with @
, that
describes values of the parameter. If the parameter is
required, this must be provided.
string entity_type_display_name = 5 [(.google.api.field_behavior) = OPTIONAL];
Type | Description |
ByteString | The bytes for entityTypeDisplayName. |
getIsList()
public abstract boolean getIsList()
Optional. Indicates whether the parameter represents a list of values.
bool is_list = 8 [(.google.api.field_behavior) = OPTIONAL];
Type | Description |
boolean | The isList. |
getMandatory()
public abstract boolean getMandatory()
Optional. Indicates whether the parameter is required. That is, whether the intent cannot be completed without collecting the parameter value.
bool mandatory = 6 [(.google.api.field_behavior) = OPTIONAL];
Type | Description |
boolean | The mandatory. |
getName()
public abstract String getName()
The unique identifier of this parameter.
string name = 1;
Type | Description |
String | The name. |
getNameBytes()
public abstract ByteString getNameBytes()
The unique identifier of this parameter.
string name = 1;
Type | Description |
ByteString | The bytes for name. |
getPrompts(int index)
public abstract String getPrompts(int index)
Optional. The collection of prompts that the agent can present to the user in order to collect a value for the parameter.
repeated string prompts = 7 [(.google.api.field_behavior) = OPTIONAL];
Name | Description |
index | int The index of the element to return. |
Type | Description |
String | The prompts at the given index. |
getPromptsBytes(int index)
public abstract ByteString getPromptsBytes(int index)
Optional. The collection of prompts that the agent can present to the user in order to collect a value for the parameter.
repeated string prompts = 7 [(.google.api.field_behavior) = OPTIONAL];
Name | Description |
index | int The index of the value to return. |
Type | Description |
ByteString | The bytes of the prompts at the given index. |
getPromptsCount()
public abstract int getPromptsCount()
Optional. The collection of prompts that the agent can present to the user in order to collect a value for the parameter.
repeated string prompts = 7 [(.google.api.field_behavior) = OPTIONAL];
Type | Description |
int | The count of prompts. |
getPromptsList()
public abstract List<String> getPromptsList()
Optional. The collection of prompts that the agent can present to the user in order to collect a value for the parameter.
repeated string prompts = 7 [(.google.api.field_behavior) = OPTIONAL];
Type | Description |
List<String> | A list containing the prompts. |
getValue()
public abstract String getValue()
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
.
string value = 3 [(.google.api.field_behavior) = OPTIONAL];
Type | Description |
String | The value. |
getValueBytes()
public abstract ByteString getValueBytes()
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
.
string value = 3 [(.google.api.field_behavior) = OPTIONAL];
Type | Description |
ByteString | The bytes for value. |