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

GoogleCloudDialogflowCxV3EntityTypeEntity

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

An entity entry for an associated entity type.

interface GoogleCloudDialogflowCxV3EntityTypeEntity {
synonyms?: string[];
value?: string;
}

§Properties

§
synonyms?: string[]
[src]

Required. A collection of value synonyms. For example, if the entity type is vegetable, and value is scallions, a synonym could be green onions. For KIND_LIST entity types: * This collection must contain exactly one synonym equal to value.

§
value?: string
[src]

Required. The primary value associated with this entity entry. For example, if the entity type is vegetable, the value could be scallions. For KIND_MAP entity types: * A canonical value to be used in place of synonyms. For KIND_LIST entity types: * A string that can contain references to other entity types (with or without aliases).