Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ExportIntentsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ExportIntentsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb
Overview
The response message for Intents.ExportIntents.
Instance Attribute Summary collapse
-
#intents_content ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3InlineDestination
Inline destination for a Dialogflow operation that writes or exports objects ( e.g. intents) outside of Dialogflow.
-
#intents_uri ⇒ String
The URI to a file containing the exported intents.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3ExportIntentsResponse
constructor
A new instance of GoogleCloudDialogflowCxV3ExportIntentsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3ExportIntentsResponse
Returns a new instance of GoogleCloudDialogflowCxV3ExportIntentsResponse.
1014 1015 1016 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1014 def initialize(**args) update!(**args) end |
Instance Attribute Details
#intents_content ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3InlineDestination
Inline destination for a Dialogflow operation that writes or exports objects (
e.g. intents) outside of Dialogflow.
Corresponds to the JSON property intentsContent
1006 1007 1008 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1006 def intents_content @intents_content end |
#intents_uri ⇒ String
The URI to a file containing the exported intents. This field is populated
only if intents_uri
is specified in ExportIntentsRequest.
Corresponds to the JSON property intentsUri
1012 1013 1014 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1012 def intents_uri @intents_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1019 1020 1021 1022 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1019 def update!(**args) @intents_content = args[:intents_content] if args.key?(:intents_content) @intents_uri = args[:intents_uri] if args.key?(:intents_uri) end |