PersephonyAPI/javascript-sdk

View on GitHub
src/enums/answeredBy.js

Summary

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

/**
 * Enum for the possible values of the answeredBy field on a callConnectUrl invocation.
 *
 * @readonly
 * @enum {string}
 */
var answeredBy = {
  HUMAN: 'human',
  MACHINE: 'machine'
}

module.exports = answeredBy