Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/representations.rb
Overview
The response message for EntityTypes.ImportEntityTypes.
Instance Attribute Summary collapse
-
#conflicting_resources ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponseConflictingResources
Conflicting resources detected during the import process.
-
#entity_types ⇒ Array<String>
The unique identifier of the imported entity types.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponse
constructor
A new instance of GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponse
Returns a new instance of GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponse.
5465 5466 5467 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 5465 def initialize(**args) update!(**args) end |
Instance Attribute Details
#conflicting_resources ⇒ Google::Apis::DialogflowV2::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
5457 5458 5459 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 5457 def conflicting_resources @conflicting_resources end |
#entity_types ⇒ Array<String>
The unique identifier of the imported entity types. Format: projects//
locations//agents//entity_types/.
Corresponds to the JSON property entityTypes
5463 5464 5465 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 5463 def entity_types @entity_types end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5470 5471 5472 5473 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 5470 def update!(**args) @conflicting_resources = args[:conflicting_resources] if args.key?(:conflicting_resources) @entity_types = args[:entity_types] if args.key?(:entity_types) end |