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

GoogleCloudDialogflowCxV3ExportEntityTypesRequest

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

The request message for EntityTypes.ExportEntityTypes.

interface GoogleCloudDialogflowCxV3ExportEntityTypesRequest {
dataFormat?: "DATA_FORMAT_UNSPECIFIED" | "BLOB" | "JSON_PACKAGE";
entityTypes?: string[];
entityTypesContentInline?: boolean;
entityTypesUri?: string;
languageCode?: string;
}

§Properties

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

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

§
entityTypes?: string[]
[src]

Required. The name of the entity types to export. Format: projects//locations//agents//entityTypes/.

§
entityTypesContentInline?: boolean
[src]

Optional. The option to return the serialized entity types inline.

§
entityTypesUri?: string
[src]

Optional. The Google Cloud Storage URI to export the entity types 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.

§
languageCode?: string
[src]

Optional. The language to retrieve the entity type for. The following fields are language dependent: * EntityType.entities.value * EntityType.entities.synonyms * EntityType.excluded_phrases.value If not specified, all language dependent fields will be retrieved. Many languages are supported. Note: languages must be enabled in the agent before they can be used.