Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SearchKnowledgeResponse

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

Overview

The response message for Conversations.SearchKnowledge.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2SearchKnowledgeResponse

Returns a new instance of GoogleCloudDialogflowV2SearchKnowledgeResponse.



15152
15153
15154
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15152

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

Instance Attribute Details

#answersArray<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SearchKnowledgeAnswer>

Most relevant snippets extracted from articles in the given knowledge base, ordered by confidence. Corresponds to the JSON property answers



15145
15146
15147
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15145

def answers
  @answers
end

#rewritten_queryString

The rewritten query used to search knowledge. Corresponds to the JSON property rewrittenQuery

Returns:

  • (String)


15150
15151
15152
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15150

def rewritten_query
  @rewritten_query
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



15157
15158
15159
15160
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 15157

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