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.



3807
3808
3809
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3807

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

Instance Attribute Details

#conversationGoogle::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaConversation

External conversation proto definition. Corresponds to the JSON property conversation



3790
3791
3792
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3790

def conversation
  @conversation
end

Suggested related questions. Corresponds to the JSON property relatedQuestions

Returns:

  • (Array<String>)


3795
3796
3797
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3795

def related_questions
  @related_questions
end

#replyGoogle::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaReply

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



3800
3801
3802
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3800

def reply
  @reply
end

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

Search Results. Corresponds to the JSON property searchResults



3805
3806
3807
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3805

def search_results
  @search_results
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3812
3813
3814
3815
3816
3817
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3812

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