Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2FaqAnswer
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2FaqAnswer
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dialogflow_v2beta1/classes.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb
Overview
Represents answer from "frequently asked questions".
Instance Attribute Summary collapse
-
#answer ⇒ String
The piece of text from the
source
knowledge base document. -
#answer_record ⇒ String
The name of answer record, in the format of "projects/
/answerRecords/ " Corresponds to the JSON property answerRecord
. -
#confidence ⇒ Float
The system's confidence score that this Knowledge answer is a good match for this conversational query, range from 0.0 (completely uncertain) to 1.0 (completely certain).
-
#metadata ⇒ Hash<String,String>
A map that contains metadata about the answer and the document from which it originates.
-
#question ⇒ String
The corresponding FAQ question.
-
#source ⇒ String
Indicates which Knowledge Document this answer was extracted from.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2FaqAnswer
constructor
A new instance of GoogleCloudDialogflowV2FaqAnswer.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2FaqAnswer
Returns a new instance of GoogleCloudDialogflowV2FaqAnswer
355 356 357 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 355 def initialize(**args) update!(**args) end |
Instance Attribute Details
#answer ⇒ String
The piece of text from the source
knowledge base document.
Corresponds to the JSON property answer
321 322 323 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 321 def answer @answer end |
#answer_record ⇒ String
The name of answer record, in the format of
"projects/answerRecord
327 328 329 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 327 def answer_record @answer_record end |
#confidence ⇒ Float
The system's confidence score that this Knowledge answer is a good match
for this conversational query, range from 0.0 (completely uncertain)
to 1.0 (completely certain).
Corresponds to the JSON property confidence
334 335 336 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 334 def confidence @confidence end |
#metadata ⇒ Hash<String,String>
A map that contains metadata about the answer and the
document from which it originates.
Corresponds to the JSON property metadata
340 341 342 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 340 def @metadata end |
#question ⇒ String
The corresponding FAQ question.
Corresponds to the JSON property question
345 346 347 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 345 def question @question end |
#source ⇒ String
Indicates which Knowledge Document this answer was extracted
from.
Format: projects/<Project ID>/agent/knowledgeBases/<Knowledge Base
ID>/documents/<Document ID>
.
Corresponds to the JSON property source
353 354 355 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 353 def source @source end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
360 361 362 363 364 365 366 367 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 360 def update!(**args) @answer = args[:answer] if args.key?(:answer) @answer_record = args[:answer_record] if args.key?(:answer_record) @confidence = args[:confidence] if args.key?(:confidence) @metadata = args[:metadata] if args.key?(:metadata) @question = args[:question] if args.key?(:question) @source = args[:source] if args.key?(:source) end |