Show / Hide Table of Contents

Class GoogleCloudDialogflowCxV3beta1TestCaseResult

Represents a result from running a test case in an agent environment.

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

Properties

ConversationTurns

The conversation turns uttered during the test case replay in chronological order.

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

Environment

Environment where the test was run. If not set, it indicates the draft environment.

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

ETag

The ETag of the item.

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

Name

The resource name for the test case result. Format: projects//locations//agents//testCases/ /results/.

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

TestResult

Whether the test case passed in the agent environment.

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

TestTime

The time that the test was run.

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

Implements

IDirectResponseSchema
In This Article
Back to top