Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ImportIntentsResponse

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.ImportIntents.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3ImportIntentsResponse

Returns a new instance of GoogleCloudDialogflowCxV3ImportIntentsResponse.



3478
3479
3480
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3478

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

Instance Attribute Details

#conflicting_resourcesGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ImportIntentsResponseConflictingResources

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



3470
3471
3472
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3470

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>)


3476
3477
3478
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3476

def intents
  @intents
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3483
3484
3485
3486
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 3483

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