class Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AnswerFeedback
Represents feedback the customer has about the quality & correctness of a certain answer in a conversation.
Attributes
Detail feedback of Agent Assistant result. Corresponds to the JSON property `agentAssistantDetailFeedback` @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AgentAssistantFeedback]
Time when the answer/item was clicked. Corresponds to the JSON property `clickTime` @return [String]
Indicates whether the answer/item was clicked by the human agent or not. Default to false. Corresponds to the JSON property `clicked` @return [Boolean]
Indicates whether the answer/item was clicked by the human agent or not. Default to false. Corresponds to the JSON property `clicked` @return [Boolean]
The correctness level of the specific answer. Corresponds to the JSON property `correctnessLevel` @return [String]
Time when the answer/item was displayed. Corresponds to the JSON property `displayTime` @return [String]
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` @return [Boolean]
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` @return [Boolean]
Public Class Methods
# File lib/google/apis/dialogflow_v2beta1/classes.rb, line 7892 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dialogflow_v2beta1/classes.rb, line 7897 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