Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ImportEntityTypesResponseConflictingResources
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ImportEntityTypesResponseConflictingResources
- 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
-
#entity_display_names ⇒ Array<String>
Display names of conflicting entities.
-
#entity_type_display_names ⇒ Array<String>
Display names of conflicting entity types.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3ImportEntityTypesResponseConflictingResources
constructor
A new instance of GoogleCloudDialogflowCxV3ImportEntityTypesResponseConflictingResources.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3ImportEntityTypesResponseConflictingResources
Returns a new instance of GoogleCloudDialogflowCxV3ImportEntityTypesResponseConflictingResources.
3986 3987 3988 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3986 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
3979 3980 3981 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3979 def entity_display_names @entity_display_names end |
#entity_type_display_names ⇒ Array<String>
Display names of conflicting entity types.
Corresponds to the JSON property entityTypeDisplayNames
3984 3985 3986 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3984 def entity_type_display_names @entity_type_display_names end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3991 3992 3993 3994 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3991 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 |