Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaConverseConversationResponse

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

Overview

Response message for ConversationalSearchService.ConverseConversation method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaConverseConversationResponse

Returns a new instance of GoogleCloudDiscoveryengineV1alphaConverseConversationResponse.



5315
5316
5317
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5315

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

Instance Attribute Details

#conversationGoogle::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaConversation

External conversation proto definition. Corresponds to the JSON property conversation



5298
5299
5300
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5298

def conversation
  @conversation
end

Suggested related questions. Corresponds to the JSON property relatedQuestions

Returns:

  • (Array<String>)


5303
5304
5305
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5303

def related_questions
  @related_questions
end

#replyGoogle::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaReply

Defines a reply message to user. Corresponds to the JSON property reply



5308
5309
5310
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5308

def reply
  @reply
end

#search_resultsArray<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSearchResponseSearchResult>

Search Results. Corresponds to the JSON property searchResults



5313
5314
5315
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5313

def search_results
  @search_results
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5320
5321
5322
5323
5324
5325
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5320

def update!(**args)
  @conversation = args[:conversation] if args.key?(:conversation)
  @related_questions = args[:related_questions] if args.key?(:related_questions)
  @reply = args[:reply] if args.key?(:reply)
  @search_results = args[:search_results] if args.key?(:search_results)
end