Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ImportIntentsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb

Overview

The response message for Intents.ImportIntents.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ImportIntentsResponse

Returns a new instance of GoogleCloudDialogflowCxV3beta1ImportIntentsResponse.



8288
8289
8290
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 8288

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

Instance Attribute Details

#conflicting_resourcesGoogle::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ImportIntentsResponseConflictingResources

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



8280
8281
8282
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 8280

def conflicting_resources
  @conflicting_resources
end

#intentsArray<String>

The unique identifier of the imported intents. Format: projects//locations// agents//intents/. Corresponds to the JSON property intents

Returns:

  • (Array<String>)


8286
8287
8288
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 8286

def intents
  @intents
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8293
8294
8295
8296
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 8293

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