PersephonyAPI/javascript-sdk

View on GitHub
src/enums/machineType.js

Summary

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

/**
 * Enum for the possible values of the machineType field on an ifMachineUrl invocation.
 *
 * @readonly
 * @enum {string}
 */
var machineType = {
  ANSWERING_MACHINE: 'answeringMachine',
  FAX_MACHINE: 'faxMachine'
}

module.exports = machineType