Show / Hide Table of Contents

Class GoogleCloudDialogflowV2beta1AutomatedAgentReply

Represents a response from an automated agent.

Inheritance
object
GoogleCloudDialogflowV2beta1AutomatedAgentReply
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 GoogleCloudDialogflowV2beta1AutomatedAgentReply : IDirectResponseSchema

Properties

AllowCancellation

Indicates whether the partial automated agent reply is interruptible when a later reply message arrives. e.g. if the agent specified some music as partial response, it can be cancelled.

Declaration
[JsonProperty("allowCancellation")]
public virtual bool? AllowCancellation { get; set; }
Property Value
Type Description
bool?

AutomatedAgentReplyType

AutomatedAgentReply type.

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

CallCompanionAuthCode

The auth code for accessing Call Companion UI.

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

CxCurrentPage

The unique identifier of the current Dialogflow CX conversation page. Format: projects//locations//agents//flows//pages/.

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

CxSessionParameters

The collection of current Dialogflow CX agent session parameters at the time of this response. Deprecated: Use parameters instead.

Declaration
[JsonProperty("cxSessionParameters")]
public virtual IDictionary<string, object> CxSessionParameters { get; set; }
Property Value
Type Description
IDictionary<string, object>

DetectIntentResponse

Response of the Dialogflow Sessions.DetectIntent call.

Declaration
[JsonProperty("detectIntentResponse")]
public virtual GoogleCloudDialogflowV2beta1DetectIntentResponse DetectIntentResponse { get; set; }
Property Value
Type Description
GoogleCloudDialogflowV2beta1DetectIntentResponse

ETag

The ETag of the item.

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

Event__

Event name if an event is triggered for the query.

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

Intent

Name of the intent if an intent is matched for the query. For a V2 query, the value format is projects//locations/ /agent/intents/. For a V3 query, the value format is projects//locations/ /agents//intents/.

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

MatchConfidence

The confidence of the match. Values range from 0.0 (completely uncertain) to 1.0 (completely certain). This value is for informational purpose only and is only used to help match the best intent within the classification threshold. This value may change for the same end-user expression at any time due to a model retraining or change in implementation.

Declaration
[JsonProperty("matchConfidence")]
public virtual float? MatchConfidence { get; set; }
Property Value
Type Description
float?

Parameters

The collection of current parameters at the time of this response.

Declaration
[JsonProperty("parameters")]
public virtual IDictionary<string, object> Parameters { get; set; }
Property Value
Type Description
IDictionary<string, object>

ResponseMessages

Response messages from the automated agent.

Declaration
[JsonProperty("responseMessages")]
public virtual IList<GoogleCloudDialogflowV2beta1ResponseMessage> ResponseMessages { get; set; }
Property Value
Type Description
IList<GoogleCloudDialogflowV2beta1ResponseMessage>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX