Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2BatchDeleteEntitiesRequest
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2BatchDeleteEntitiesRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/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) ⇒ GoogleCloudDialogflowV2BatchDeleteEntitiesRequest
constructor
A new instance of GoogleCloudDialogflowV2BatchDeleteEntitiesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2BatchDeleteEntitiesRequest
Returns a new instance of GoogleCloudDialogflowV2BatchDeleteEntitiesRequest.
9087 9088 9089 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9087 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entity_values ⇒ Array<String>
Required. The reference values of the entities to delete. Note that these
are not fully-qualified names, i.e. they don't start with projects/.
Corresponds to the JSON property entityValues
9077 9078 9079 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9077 def entity_values @entity_values end |
#language_code ⇒ String
Optional. The language used to access language-specific data. If not specified,
the agent's default language is used. For more information, see Multilingual
intent and entity data.
Corresponds to the JSON property languageCode
9085 9086 9087 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9085 def language_code @language_code end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9092 9093 9094 9095 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 9092 def update!(**args) @entity_values = args[:entity_values] if args.key?(:entity_values) @language_code = args[:language_code] if args.key?(:language_code) end |