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

GoogleCloudDialogflowCxV3ExportIntentsRequest

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

The request message for Intents.ExportIntents.

interface GoogleCloudDialogflowCxV3ExportIntentsRequest {
dataFormat?:
| "DATA_FORMAT_UNSPECIFIED"
| "BLOB"
| "JSON"
| "CSV";
intents?: string[];
intentsContentInline?: boolean;
intentsUri?: string;
}

§Properties

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

Optional. The data format of the exported intents. If not specified, BLOB is assumed.

§
intents?: string[]
[src]

Required. The name of the intents to export. Format: projects//locations//agents//intents/.

§
intentsContentInline?: boolean
[src]

Optional. The option to return the serialized intents inline.

§
intentsUri?: string
[src]

Optional. The Google Cloud Storage URI to export the intents to. The format of this URI must be gs:///. 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.