class Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AgentAssistantRecord

Represents a record of a human agent assistant answer.

Attributes

article_suggestion_answer[RW]

Represents article answer. Corresponds to the JSON property `articleSuggestionAnswer` @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ArticleAnswer]

faq_answer[RW]

Represents answer from “frequently asked questions”. Corresponds to the JSON property `faqAnswer` @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1FaqAnswer]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v2beta1/classes.rb, line 7680
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dialogflow_v2beta1/classes.rb, line 7685
def update!(**args)
  @article_suggestion_answer = args[:article_suggestion_answer] if args.key?(:article_suggestion_answer)
  @faq_answer = args[:faq_answer] if args.key?(:faq_answer)
end