Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ImportIntentsResponseConflictingResources

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/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) ⇒ GoogleCloudDialogflowCxV3ImportIntentsResponseConflictingResources

Returns a new instance of GoogleCloudDialogflowCxV3ImportIntentsResponseConflictingResources.



3724
3725
3726
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3724

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>)


3717
3718
3719
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3717

def entity_display_names
  @entity_display_names
end

#intent_display_namesArray<String>

Display names of conflicting intents. Corresponds to the JSON property intentDisplayNames

Returns:

  • (Array<String>)


3722
3723
3724
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3722

def intent_display_names
  @intent_display_names
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3729
3730
3731
3732
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3729

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