Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3ImportEntityTypesResponseConflictingResources

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

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.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3ImportEntityTypesResponseConflictingResources

Returns a new instance of GoogleCloudDialogflowCxV3ImportEntityTypesResponseConflictingResources.



1543
1544
1545
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 1543

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

Instance Attribute Details

#entity_display_namesArray<String>

Display names of conflicting entities. Corresponds to the JSON property entityDisplayNames

Returns:

  • (Array<String>)


1536
1537
1538
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 1536

def entity_display_names
  @entity_display_names
end

#entity_type_display_namesArray<String>

Display names of conflicting entity types. Corresponds to the JSON property entityTypeDisplayNames

Returns:

  • (Array<String>)


1541
1542
1543
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 1541

def entity_type_display_names
  @entity_type_display_names
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1548
1549
1550
1551
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 1548

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