class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3EntityTypeEntity
An **entity entry** for an associated entity type.
Attributes
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 property `synonyms` @return [Array<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` @return [String]
Public Class Methods
# File lib/google/apis/dialogflow_v3/classes.rb, line 841 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dialogflow_v3/classes.rb, line 846 def update!(**args) @synonyms = args[:synonyms] if args.key?(:synonyms) @value = args[:value] if args.key?(:value) end