class Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AnswerFeedback

Represents feedback the customer has about the quality & correctness of a certain answer in a conversation.

Attributes

agent_assistant_detail_feedback[RW]

Detail feedback of Agent Assistant result. Corresponds to the JSON property `agentAssistantDetailFeedback` @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AgentAssistantFeedback]

click_time[RW]

Time when the answer/item was clicked. Corresponds to the JSON property `clickTime` @return [String]

clicked[RW]

Indicates whether the answer/item was clicked by the human agent or not. Default to false. Corresponds to the JSON property `clicked` @return [Boolean]

clicked?[RW]

Indicates whether the answer/item was clicked by the human agent or not. Default to false. Corresponds to the JSON property `clicked` @return [Boolean]

correctness_level[RW]

The correctness level of the specific answer. Corresponds to the JSON property `correctnessLevel` @return [String]

display_time[RW]

Time when the answer/item was displayed. Corresponds to the JSON property `displayTime` @return [String]

displayed[RW]

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]

displayed?[RW]

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

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v2beta1/classes.rb, line 7892
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 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