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

GoogleCloudDialogflowCxV3ExportTestCasesRequest

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

The request message for TestCases.ExportTestCases.

interface GoogleCloudDialogflowCxV3ExportTestCasesRequest {
dataFormat?: "DATA_FORMAT_UNSPECIFIED" | "BLOB" | "JSON";
filter?: string;
gcsUri?: string;
}

§Properties

§
dataFormat?: "DATA_FORMAT_UNSPECIFIED" | "BLOB" | "JSON"
[src]

The data format of the exported test cases. If not specified, BLOB is assumed.

§
filter?: string
[src]

The filter expression used to filter exported test cases, see API Filtering. The expression is case insensitive and supports the following syntax: name = [OR name = ] ... For example: * "name = t1 OR name = t2" matches the test case with the exact resource name "t1" or "t2".

§
gcsUri?: string
[src]

The Google Cloud Storage URI to export the test cases to. The format of this URI must be gs:///. If unspecified, the serialized test cases is returned inline. Dialogflow performs a write operation for the Cloud Storage object on the caller's behalf, so your request authentication must have write permissions for the object. For more information, see Dialogflow access control.