Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EntityTypeEntity
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EntityTypeEntity
 
 
- 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
- 
  
    
      #synonyms  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDialogflowV2beta1EntityTypeEntity 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudDialogflowV2beta1EntityTypeEntity.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1EntityTypeEntity
Returns a new instance of GoogleCloudDialogflowV2beta1EntityTypeEntity
      2169 2170 2171  | 
    
      # File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2169 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#synonyms ⇒ Array<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
      2157 2158 2159  | 
    
      # File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2157 def synonyms @synonyms end  | 
  
#value ⇒ String
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
      2167 2168 2169  | 
    
      # File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2167 def value @value end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2174 2175 2176 2177  | 
    
      # File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2174 def update!(**args) @synonyms = args[:synonyms] if args.key?(:synonyms) @value = args[:value] if args.key?(:value) end  |