Show / Hide Table of Contents

Class GoogleCloudDialogflowV2AnswerFeedback

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

Inheritance
System.Object
GoogleCloudDialogflowV2AnswerFeedback
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Dialogflow.v2.Data
Assembly: Google.Apis.Dialogflow.v2.dll
Syntax
public class GoogleCloudDialogflowV2AnswerFeedback : IDirectResponseSchema

Properties

AgentAssistantDetailFeedback

Detail feedback of agent assist suggestions.

Declaration
[JsonProperty("agentAssistantDetailFeedback")]
public virtual GoogleCloudDialogflowV2AgentAssistantFeedback AgentAssistantDetailFeedback { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2AgentAssistantFeedback

Clicked

Indicates whether the answer/item was clicked by the human agent or not. Default to false.

Declaration
[JsonProperty("clicked")]
public virtual bool? Clicked { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ClickTime

Time when the answer/item was clicked.

Declaration
[JsonProperty("clickTime")]
public virtual object ClickTime { get; set; }
Property Value
Type Description
System.Object

CorrectnessLevel

The correctness level of the specific answer.

Declaration
[JsonProperty("correctnessLevel")]
public virtual string CorrectnessLevel { get; set; }
Property Value
Type Description
System.String

Displayed

Indicates whether the answer/item was displayed to the human agent in the agent desktop UI. Default to false.

Declaration
[JsonProperty("displayed")]
public virtual bool? Displayed { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

DisplayTime

Time when the answer/item was displayed.

Declaration
[JsonProperty("displayTime")]
public virtual object DisplayTime { get; set; }
Property Value
Type Description
System.Object

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top