Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2EntityTypeEntity

Inherits:
Object
  • Object
show all
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

Optional. Represents an entity.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2EntityTypeEntity

Returns a new instance of GoogleCloudDialogflowV2EntityTypeEntity



171
172
173
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 171

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#synonymsArray<String>

Required. A collection of synonyms. For KIND_LIST entity types this must contain exactly one synonym equal to value. Corresponds to the JSON property synonyms

Returns:

  • (Array<String>)


159
160
161
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 159

def synonyms
  @synonyms
end

#valueString

Required. For KIND_MAP entity types: A canonical name 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

Returns:

  • (String)


169
170
171
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 169

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



176
177
178
179
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 176

def update!(**args)
  @synonyms = args[:synonyms] if args.key?(:synonyms)
  @value = args[:value] if args.key?(:value)
end