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.



7557
7558
7559
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7557

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

Instance Attribute Details

#conversationGoogle::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaConversation

External conversation proto definition. Corresponds to the JSON property conversation



7540
7541
7542
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7540

def conversation
  @conversation
end

Suggested related questions. Corresponds to the JSON property relatedQuestions

Returns:

  • (Array<String>)


7545
7546
7547
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7545

def related_questions
  @related_questions
end

#replyGoogle::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaReply

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



7550
7551
7552
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7550

def reply
  @reply
end

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

Search Results. Corresponds to the JSON property searchResults



7555
7556
7557
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7555

def search_results
  @search_results
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7562
7563
7564
7565
7566
7567
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 7562

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