Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer

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

Overview

Represents an answer from Knowledge. Currently supports FAQ and Generative answers.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer

Returns a new instance of GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer.



22076
22077
22078
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 22076

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

Instance Attribute Details

#answer_textString

The piece of text from the source that answers this suggested query. Corresponds to the JSON property answerText

Returns:

  • (String)


22064
22065
22066
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 22064

def answer_text
  @answer_text
end

#faq_sourceGoogle::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerFaqSource

Details about source of FAQ answer. Corresponds to the JSON property faqSource



22069
22070
22071
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 22069

def faq_source
  @faq_source
end

#generative_sourceGoogle::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource

Details about source of Generative answer. Corresponds to the JSON property generativeSource



22074
22075
22076
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 22074

def generative_source
  @generative_source
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



22081
22082
22083
22084
22085
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 22081

def update!(**args)
  @answer_text = args[:answer_text] if args.key?(:answer_text)
  @faq_source = args[:faq_source] if args.key?(:faq_source)
  @generative_source = args[:generative_source] if args.key?(:generative_source)
end