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

SlotTypeValue

import type { SlotTypeValue } from "https://aws-api.deno.dev/v0.4/services/lexmodelsv2.ts?docs=full";

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

interface SlotTypeValue {
sampleValue?: SampleValue | null;
synonyms?: SampleValue[] | null;
}

§Properties

§
sampleValue?: SampleValue | null
[src]

The value of the slot type entry.

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

Additional values related to the slot type entry.