Back to Devexpress

NusaCommand Interface

aspnetcore-js-devexpress-dot-richedit-e2cb1ac8.md

latest1.7 KB
Original Source

NusaCommand Interface

Declares a Nuance SpeechKit command.

Declaration

ts
export interface NusaCommand

Remarks

A Nuance SpeechKit command is a spoken phrase that initiates an action in an application.

See Also

Speech Recognition and Virtual Assistant (Nuance)

Properties

commandId Property

Specifies the unique identifier of the command.

Declaration

ts
commandId: NusaCommandId

Property Value

TypeDescription
NusaCommandId

The command identifier.

|

Remarks

A command identifier must not contain spaces or start with a number.

description Property

Specifies command description.

Declaration

ts
description: string

Property Value

TypeDescription
string

The description text.

|

phrase Property

Specifies a phrase that a user should say to initiate the command.

Declaration

ts
phrase: string

Property Value

TypeDescription
string

The phrase.

|

Remarks

The phrase should be specified in lowercase, without punctuation marks or symbols. Digits should be specified as text. For acronyms, use capital letters separated by spaces; for instance, M V C.

title Property

Specifies the command title.

Declaration

ts
title: string | null

Property Value

TypeDescription
string

The title. null if the command has no title.

|