Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2EntityTypeEntity
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2EntityTypeEntity
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dialogflow_v2beta1/classes.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb
Overview
An entity entry for an associated entity type.
Instance Attribute Summary collapse
-
#synonyms ⇒ Array<String>
Required.
-
#value ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2EntityTypeEntity
constructor
A new instance of GoogleCloudDialogflowV2EntityTypeEntity.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2EntityTypeEntity
Returns a new instance of GoogleCloudDialogflowV2EntityTypeEntity
176 177 178 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 176 def initialize(**args) update!(**args) end |
Instance Attribute Details
#synonyms ⇒ Array<String>
Required. A collection of value synonyms. For example, if the entity type
is vegetable, and value
is scallions, a synonym could be green
onions.
For KIND_LIST
entity types:
- This collection must contain exactly one synonym equal to
value
. Corresponds to the JSON propertysynonyms
162 163 164 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 162 def synonyms @synonyms end |
#value ⇒ String
Required. The primary value associated with this entity entry.
For example, if the entity type is vegetable, the value could be
scallions.
For KIND_MAP
entity types:
- A canonical value to be used in place of synonyms.
For
KIND_LIST
entity types: - A string that can contain references to other entity types (with or
without aliases).
Corresponds to the JSON property
value
174 175 176 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 174 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
181 182 183 184 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 181 def update!(**args) @synonyms = args[:synonyms] if args.key?(:synonyms) @value = args[:value] if args.key?(:value) end |