PersephonyAPI/javascript-sdk

View on GitHub
src/enums/ifMachine.js

Summary

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

/**
 * Enum for the allowed values for the ifMachine property when placing a Call through the API or the OutDial PerCL command.
 *
 * @readonly
 * @enum {string}
 */
var ifMachine = {
  REDIRECT: 'redirect',
  HANGUP: 'hangup'
}

module.exports = ifMachine