Show / Hide Table of Contents

Class GoogleCloudDialogflowV2beta1AnswerRecord

Answer records are records to manage answer history and feedbacks for Dialogflow. Currently, answer record includes: - human agent assistant article suggestion - human agent assistant faq article It doesn't include: - DetectIntent intent matching - DetectIntent knowledge Answer records are not related to the conversation history in the Dialogflow Console. A Record is generated even when the end-user disables conversation history in the console. Records are created when there's a human agent assistant suggestion generated. A typical workflow for customers provide feedback to an answer is: 1. For human agent assistant, customers get suggestion via ListSuggestions API. Together with the answers, AnswerRecord.name are returned to the customers. 2. The customer uses the AnswerRecord.name to call the UpdateAnswerRecord method to send feedback about a specific answer that they believe is wrong.

Inheritance
object
GoogleCloudDialogflowV2beta1AnswerRecord
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Dialogflow.v2beta1.Data
Assembly: Google.Apis.Dialogflow.v2beta1.dll
Syntax
public class GoogleCloudDialogflowV2beta1AnswerRecord : IDirectResponseSchema

Properties

AgentAssistantRecord

Output only. The record for human agent assistant.

Declaration
[JsonProperty("agentAssistantRecord")]
public virtual GoogleCloudDialogflowV2beta1AgentAssistantRecord AgentAssistantRecord { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2beta1AgentAssistantRecord

AnswerFeedback

Optional. The AnswerFeedback for this record. You can set this with AnswerRecords.UpdateAnswerRecord in order to give us feedback about this answer.

Declaration
[JsonProperty("answerFeedback")]
public virtual GoogleCloudDialogflowV2beta1AnswerFeedback AnswerFeedback { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2beta1AnswerFeedback

ETag

The ETag of the item.

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

Name

The unique identifier of this answer record. Required for AnswerRecords.UpdateAnswerRecord method. Format: projects//locations//answerRecords/.

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX