Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ExportEntityTypesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ExportEntityTypesResponse
- 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
The response message for EntityTypes.ExportEntityTypes.
Instance Attribute Summary collapse
-
#entity_types_content ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1InlineDestination
Inline destination for a Dialogflow operation that writes or exports objects ( e.g. intents) outside of Dialogflow.
-
#entity_types_uri ⇒ String
The URI to a file containing the exported entity types.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ExportEntityTypesResponse
constructor
A new instance of GoogleCloudDialogflowCxV3beta1ExportEntityTypesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ExportEntityTypesResponse
Returns a new instance of GoogleCloudDialogflowCxV3beta1ExportEntityTypesResponse.
9793 9794 9795 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9793 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entity_types_content ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1InlineDestination
Inline destination for a Dialogflow operation that writes or exports objects (
e.g. intents) outside of Dialogflow.
Corresponds to the JSON property entityTypesContent
9785 9786 9787 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9785 def entity_types_content @entity_types_content end |
#entity_types_uri ⇒ String
The URI to a file containing the exported entity types. This field is
populated only if entity_types_uri
is specified in ExportEntityTypesRequest.
Corresponds to the JSON property entityTypesUri
9791 9792 9793 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9791 def entity_types_uri @entity_types_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9798 9799 9800 9801 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 9798 def update!(**args) @entity_types_content = args[:entity_types_content] if args.key?(:entity_types_content) @entity_types_uri = args[:entity_types_uri] if args.key?(:entity_types_uri) end |