Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResources
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResources
- 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
-
#entity_display_names ⇒ Array<String>
Display names of conflicting entities.
-
#intent_display_names ⇒ Array<String>
Display names of conflicting intents.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResources
constructor
A new instance of GoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResources.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResources
Returns a new instance of GoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResources.
8315 8316 8317 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 8315 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entity_display_names ⇒ Array<String>
Display names of conflicting entities.
Corresponds to the JSON property entityDisplayNames
8308 8309 8310 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 8308 def entity_display_names @entity_display_names end |
#intent_display_names ⇒ Array<String>
Display names of conflicting intents.
Corresponds to the JSON property intentDisplayNames
8313 8314 8315 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 8313 def intent_display_names @intent_display_names end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8320 8321 8322 8323 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 8320 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 |