Show / Hide Table of Contents

Class GoogleCloudDialogflowCxV3beta1ConversationTurnVirtualAgentOutput

The output from the virtual agent.

Inheritance
System.Object
GoogleCloudDialogflowCxV3beta1ConversationTurnVirtualAgentOutput
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 GoogleCloudDialogflowCxV3beta1ConversationTurnVirtualAgentOutput : IDirectResponseSchema

Properties

CurrentPage

The Page on which the utterance was spoken. Only name and displayName will be set.

Declaration
[JsonProperty("currentPage")]
public virtual GoogleCloudDialogflowCxV3beta1Page CurrentPage { get; set; }
Property Value
Type Description
GoogleCloudDialogflowCxV3beta1Page

DiagnosticInfo

Required. Input only. The diagnostic info output for the turn.

Declaration
[JsonProperty("diagnosticInfo")]
public virtual IDictionary<string, object> DiagnosticInfo { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, System.Object>

Differences

Output only. If this is part of a result conversation turn, the list of differences between the original run and the replay for this output, if any.

Declaration
[JsonProperty("differences")]
public virtual IList<GoogleCloudDialogflowCxV3beta1TestRunDifference> Differences { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<GoogleCloudDialogflowCxV3beta1TestRunDifference>

ETag

The ETag of the item.

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

SessionParameters

The session parameters available to the bot at this point.

Declaration
[JsonProperty("sessionParameters")]
public virtual IDictionary<string, object> SessionParameters { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, System.Object>

Status

Response error from the agent in the test result. If set, other output is empty.

Declaration
[JsonProperty("status")]
public virtual GoogleRpcStatus Status { get; set; }
Property Value
Type Description
GoogleRpcStatus

TextResponses

The text responses from the agent for the turn.

Declaration
[JsonProperty("textResponses")]
public virtual IList<GoogleCloudDialogflowCxV3beta1ResponseMessageText> TextResponses { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<GoogleCloudDialogflowCxV3beta1ResponseMessageText>

TriggeredIntent

The Intent that triggered the response. Only name and displayName will be set.

Declaration
[JsonProperty("triggeredIntent")]
public virtual GoogleCloudDialogflowCxV3beta1Intent TriggeredIntent { get; set; }
Property Value
Type Description
GoogleCloudDialogflowCxV3beta1Intent

Implements

IDirectResponseSchema
In This Article
Back to top