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

EnumerationValue

import type { EnumerationValue } from "https://aws-api.deno.dev/v0.3/services/lexmodelbuildingservice.ts?docs=full";

Each slot type can have a set of values. Each enumeration value represents a value the slot type can take.

For example, a pizza ordering bot could have a slot type that specifies the type of crust that the pizza should have. The slot type could include the values

  • thick
  • thin
  • stuffed
interface EnumerationValue {
synonyms?: string[] | null;
value: string;
}

§Properties

§
synonyms?: string[] | null
[src]

Additional values related to the slot type value.

§
value: string
[src]

The value of the slot type.