PersephonyAPI/javascript-sdk

View on GitHub
src/enums/grammarType.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * @module persephony-sdk/enums/grammarType
 */

/**
 * Enum for the supported values for the grammarType option of the GetSpeech PerCL command.
 *
 * @readonly
 * @enum {string}
 */
var grammarType = {
  URL: 'URL',
  BUILT_IN: 'BUILTIN'
}

module.exports = grammarType