Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb

Overview

The response message for EntityTypes.ImportEntityTypes.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponse

Returns a new instance of GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponse.



9381
9382
9383
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9381

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

Instance Attribute Details

#conflicting_resourcesGoogle::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponseConflictingResources

Conflicting resources detected during the import process. Only filled when REPORT_CONFLICT is set in the request and there are conflicts in the display names. Corresponds to the JSON property conflictingResources



9373
9374
9375
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9373

def conflicting_resources
  @conflicting_resources
end

#entity_typesArray<String>

The unique identifier of the imported entity types. Format: projects// locations//agents//entity_types/. Corresponds to the JSON property entityTypes

Returns:

  • (Array<String>)


9379
9380
9381
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9379

def entity_types
  @entity_types
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9386
9387
9388
9389
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9386

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