Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1BatchDeleteEntitiesRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1BatchDeleteEntitiesRequest
 
- 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
The request message for EntityTypes.BatchDeleteEntities.
Instance Attribute Summary collapse
- 
  
    
      #entity_values  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Required. 
- 
  
    
      #language_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Optional. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDialogflowV2beta1BatchDeleteEntitiesRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleCloudDialogflowV2beta1BatchDeleteEntitiesRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1BatchDeleteEntitiesRequest
Returns a new instance of GoogleCloudDialogflowV2beta1BatchDeleteEntitiesRequest
| 1587 1588 1589 | # File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 1587 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#entity_values ⇒ Array<String>
Required. The canonical values of the entities to delete. Note that
these are not fully-qualified names, i.e. they don't start with
projects/<Project ID>.
Corresponds to the JSON property entityValues
| 1576 1577 1578 | # File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 1576 def entity_values @entity_values end | 
#language_code ⇒ String
Optional. The language of entity synonyms defined in entities. If not
specified, the agent's default language is used.
More than a dozen
languages are supported.
Note: languages must be enabled in the agent, before they can be used.
Corresponds to the JSON property languageCode
| 1585 1586 1587 | # File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 1585 def language_code @language_code end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1592 1593 1594 1595 | # File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 1592 def update!(**args) @entity_values = args[:entity_values] if args.key?(:entity_values) @language_code = args[:language_code] if args.key?(:language_code) end |