Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AgentAssistantRecord

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

Represents a record of a human agent assist answer.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2AgentAssistantRecord

Returns a new instance of GoogleCloudDialogflowV2AgentAssistantRecord.



8103
8104
8105
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8103

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

Instance Attribute Details

#article_suggestion_answerGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2ArticleAnswer

Represents article answer. Corresponds to the JSON property articleSuggestionAnswer



8091
8092
8093
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8091

def article_suggestion_answer
  @article_suggestion_answer
end

#dialogflow_assist_answerGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2DialogflowAssistAnswer

Represents a Dialogflow assist answer. Corresponds to the JSON property dialogflowAssistAnswer



8096
8097
8098
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8096

def dialogflow_assist_answer
  @dialogflow_assist_answer
end

#faq_answerGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2FaqAnswer

Represents answer from "frequently asked questions". Corresponds to the JSON property faqAnswer



8101
8102
8103
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8101

def faq_answer
  @faq_answer
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8108
8109
8110
8111
8112
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8108

def update!(**args)
  @article_suggestion_answer = args[:article_suggestion_answer] if args.key?(:article_suggestion_answer)
  @dialogflow_assist_answer = args[:dialogflow_assist_answer] if args.key?(:dialogflow_assist_answer)
  @faq_answer = args[:faq_answer] if args.key?(:faq_answer)
end