class Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1BatchDeleteEntitiesRequest

The request message for EntityTypes.BatchDeleteEntities.

Attributes

entity_values[RW]

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` @return [Array<String>]

language_code[RW]

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](cloud.google.com/dialogflow/docs/agents- multilingual#intent-entity). Corresponds to the JSON property `languageCode` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v2beta1/classes.rb, line 8187
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dialogflow_v2beta1/classes.rb, line 8192
def update!(**args)
  @entity_values = args[:entity_values] if args.key?(:entity_values)
  @language_code = args[:language_code] if args.key?(:language_code)
end