aspnetcore-js-devexpress-dot-richedit-6b5f269d.md
Declares settings of a placeholder in the Nuance SpeechKit.
export interface NusaPlaceholder
A Nuance SpeechKit command can include placeholders in the phrase. Use the NusaPlaceholder interface to declare custom placeholders.
Specifies the placeholder description.
description: string
| Type | Description |
|---|---|
| string |
The description text.
|
Specifies the unique identifier of the placeholder.
id: NusaRichEditPlaceholderId
| Type | Description |
|---|---|
The placeholder identifier.
|
A placeholder identifier must not contain spaces or numbers.
Contains the placeholder’s available values.
values: ({
spokenForm: string;
value: string;
} | string[])[]
| Type | Description |
|---|---|
| string[] | {spokenForm: string, value: string}[] |
An array of objects that contain spoken forms and corresponding values for the placeholder or an array of stings if spoken forms match the values.
|