Skip to content

Commit

Permalink
Add machineDetection, playTones, voice to Transfer
Browse files Browse the repository at this point in the history
  • Loading branch information
Colby-6sco committed Jun 18, 2016
1 parent d5b705d commit 0b5b21e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/tropo-webapi.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ TropoWebAPI.prototype.stopRecording = function() {
this.tropo.push({"stopRecording": stopRecording});
};

TropoWebAPI.prototype.transfer = function(to, answerOnMedia, choices, from, headers, name, on, required, terminator, timeout, allowSignals, interdigitTimeout, ringRepeat) {
var transfer = new base.Transfer(to, answerOnMedia, choices, from, headers, name, on, required, terminator, timeout, allowSignals, interdigitTimeout, ringRepeat);
TropoWebAPI.prototype.transfer = function(to, answerOnMedia, choices, from, headers, name, on, required, terminator, timeout, allowSignals, interdigitTimeout, ringRepeat, machineDetection, playTones, voice) {
var transfer = new base.Transfer(to, answerOnMedia, choices, from, headers, name, on, required, terminator, timeout, allowSignals, interdigitTimeout, ringRepeat, machineDetection, playTones, voice);
this.tropo.push({"transfer": transfer});
};

Expand Down

0 comments on commit 0b5b21e

Please sign in to comment.