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.



2569
2570
2571
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 2569

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

Instance Attribute Details

#conversationGoogle::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaConversation

External conversation proto definition. Corresponds to the JSON property conversation



2552
2553
2554
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 2552

def conversation
  @conversation
end

Suggested related questions. Corresponds to the JSON property relatedQuestions

Returns:

  • (Array<String>)


2557
2558
2559
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 2557

def related_questions
  @related_questions
end

#replyGoogle::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaReply

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



2562
2563
2564
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 2562

def reply
  @reply
end

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

Search Results. Corresponds to the JSON property searchResults



2567
2568
2569
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 2567

def search_results
  @search_results
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2574
2575
2576
2577
2578
2579
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 2574

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