Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ExportIntentsResponse

Inherits:
Object
  • Object
show all
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 Intents.ExportIntents.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3ExportIntentsResponse

Returns a new instance of GoogleCloudDialogflowCxV3ExportIntentsResponse.



2427
2428
2429
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 2427

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#intents_contentGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3InlineDestination

Inline destination for a Dialogflow operation that writes or exports objects ( e.g. intents) outside of Dialogflow. Corresponds to the JSON property intentsContent



2419
2420
2421
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 2419

def intents_content
  @intents_content
end

#intents_uriString

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

Returns:

  • (String)


2425
2426
2427
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 2425

def intents_uri
  @intents_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2432
2433
2434
2435
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 2432

def update!(**args)
  @intents_content = args[:intents_content] if args.key?(:intents_content)
  @intents_uri = args[:intents_uri] if args.key?(:intents_uri)
end