Skip to content

Commit

Permalink
added machineDetection to the transfer method
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinbond committed Dec 2, 2013
1 parent b0967b1 commit bf68866
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tropo.py
Expand Up @@ -526,10 +526,11 @@ class Transfer(TropoAction):
"name": String,
"required": Boolean,
"terminator": String,
"timeout": Float } }
"timeout": Float,
"machineDetection": Boolean or Object } }
"""
action = 'transfer'
options_array = ['answerOnMedia', 'choices', '_from', 'name', 'on', 'required', 'allowSignals', 'headers', 'interdigitTimeout', 'ringRepeat', 'timeout']
options_array = ['answerOnMedia', 'choices', '_from', 'name', 'on', 'required', 'allowSignals', 'headers', 'interdigitTimeout', 'ringRepeat', 'timeout', 'machineDetection']

def __init__(self, to, **options):
self._dict = {'to': to}
Expand Down

0 comments on commit bf68866

Please sign in to comment.