@vonage/voice
Version:
The Voice API lets you create outbound calls, control in-progress calls and get information about historical calls.
18 lines • 616 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MachineDetection = void 0;
/**
* Enum representing machine detection behavior for the Connect NCCO action.
*/
var MachineDetection;
(function (MachineDetection) {
/**
* Continue with the call if machine detection is triggered.
*/
MachineDetection["CONTINUE"] = "continue";
/**
* Hang up the call if machine detection is triggered.
*/
MachineDetection["HANGUP"] = "hangup";
})(MachineDetection || (exports.MachineDetection = MachineDetection = {}));
//# sourceMappingURL=MachineDetection.js.map