Skip to content

Commit 3aa7273

Browse files
committed
EDGE-630 Update the doc strings
1 parent a4b9e0e commit 3aa7273

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

bandwidth/webrtc/utils/transfer_util.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ def generate_transfer_bxml(device_token, voice_call_id, sip_uri='sip:sipx.webrtc
1010
"""
1111
Returns BXML string with WebRTC a device token to perform a SIP transfer
1212
:param device_token: The device token
13-
:param voice_call_id: The voice call id, used for debugging
14-
:param sip_uri: The uri of the sipx, if not specified it will take the default value
13+
:param voice_call_id: The Bandwidth Voice Call Id
14+
:param sip_uri: The SIP URI to transfer the call to
1515
"""
1616
return '<?xml version="1.0" encoding="UTF-8"?><Response>' + generate_transfer_bxml_verb(device_token, voice_call_id, sip_uri) + '</Response>'
1717

1818
def generate_transfer_bxml_verb(device_token, voice_call_id, sip_uri='sip:sipx.webrtc.bandwidth.com:5060'):
1919
"""
2020
Returns the Transfer verb to perform the SIP transfer
2121
:param device_token: The device token
22-
:param voice_call_id: The voice call id, used for debugging
23-
:param sip_uri: The uri of the sipx, if not specified it will take the default value
22+
:param voice_call_id: The Bandwidth Voice Call Id
23+
:param sip_uri: The SIP URI to transfer the call to
2424
"""
2525
return f'''<Transfer><SipUri uui="{"".join(voice_call_id.split("-")[1::])};encoding=base64,{device_token};encoding=jwt">{sip_uri}</SipUri></Transfer>'''

0 commit comments

Comments
 (0)