Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AnswerFeedback
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AnswerFeedback
- 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 feedback the customer has about the quality & correctness of a certain answer in a conversation.
Instance Attribute Summary collapse
-
#agent_assistant_detail_feedback ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AgentAssistantFeedback
Detail feedback of Agent Assist result.
-
#click_time ⇒ String
Time when the answer/item was clicked.
-
#clicked ⇒ Boolean
(also: #clicked?)
Indicates whether the answer/item was clicked by the human agent or not.
-
#correctness_level ⇒ String
The correctness level of the specific answer.
-
#display_time ⇒ String
Time when the answer/item was displayed.
-
#displayed ⇒ Boolean
(also: #displayed?)
Indicates whether the answer/item was displayed to the human agent in the agent desktop UI.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2AnswerFeedback
constructor
A new instance of GoogleCloudDialogflowV2AnswerFeedback.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2AnswerFeedback
Returns a new instance of GoogleCloudDialogflowV2AnswerFeedback.
6599 6600 6601 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6599 def initialize(**args) update!(**args) end |
Instance Attribute Details
#agent_assistant_detail_feedback ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AgentAssistantFeedback
Detail feedback of Agent Assist result.
Corresponds to the JSON property agentAssistantDetailFeedback
6567 6568 6569 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6567 def agent_assistant_detail_feedback @agent_assistant_detail_feedback end |
#click_time ⇒ String
Time when the answer/item was clicked.
Corresponds to the JSON property clickTime
6572 6573 6574 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6572 def click_time @click_time end |
#clicked ⇒ Boolean Also known as: clicked?
Indicates whether the answer/item was clicked by the human agent or not.
Default to false. For knowledge search and knowledge assist, the answer record
is considered to be clicked if the answer was copied or any URI was clicked.
Corresponds to the JSON property clicked
6579 6580 6581 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6579 def clicked @clicked end |
#correctness_level ⇒ String
The correctness level of the specific answer.
Corresponds to the JSON property correctnessLevel
6585 6586 6587 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6585 def correctness_level @correctness_level end |
#display_time ⇒ String
Time when the answer/item was displayed.
Corresponds to the JSON property displayTime
6590 6591 6592 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6590 def display_time @display_time end |
#displayed ⇒ Boolean Also known as: displayed?
Indicates whether the answer/item was displayed to the human agent in the
agent desktop UI. Default to false.
Corresponds to the JSON property displayed
6596 6597 6598 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6596 def displayed @displayed end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6604 6605 6606 6607 6608 6609 6610 6611 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6604 def update!(**args) @agent_assistant_detail_feedback = args[:agent_assistant_detail_feedback] if args.key?(:agent_assistant_detail_feedback) @click_time = args[:click_time] if args.key?(:click_time) @clicked = args[:clicked] if args.key?(:clicked) @correctness_level = args[:correctness_level] if args.key?(:correctness_level) @display_time = args[:display_time] if args.key?(:display_time) @displayed = args[:displayed] if args.key?(:displayed) end |