PersephonyAPI/javascript-sdk

View on GitHub
src/enums/playBeep.js

Summary

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

/**
 * Enum for Conference.playBeep values.
 *
 * @readonly
 * @enum {string}
 */
var playBeep = {
  ALWAYS: 'always',
  NEVER: 'never',
  ENTRY_ONLY: 'entryOnly',
  EXIT_ONLY: 'exitOnly'
}

module.exports = playBeep