Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleCloudDialogflowCxV3beta1TestCaseResult

import type { GoogleCloudDialogflowCxV3beta1TestCaseResult } from "https://googleapis.deno.dev/v1/dialogflow:v3.ts";

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

interface GoogleCloudDialogflowCxV3beta1TestCaseResult {
environment?: string;
name?: string;
testResult?: "TEST_RESULT_UNSPECIFIED" | "PASSED" | "FAILED";
testTime?: Date;
}

§Properties

§

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

§
environment?: string
[src]

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

§
name?: string
[src]

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

§
testResult?: "TEST_RESULT_UNSPECIFIED" | "PASSED" | "FAILED"
[src]

Whether the test case passed in the agent environment.

§
testTime?: Date
[src]

The time that the test was run.