clearDtmf
Clears the DTMF digits received during a call.
Description
vcc.clearDtmf(): void
You can save the DTMF data, then ask the client for another DTMF input.
Parameters
none
Return values
void
Example
After receiving a PIN code, we want to save the code, and then request the client’s date of birth. We insert a button into the script that saves the PIN code.
vcc.setFieldValue('pin_code', vcc.getScriptVariable('global.dtmf'));
vcc.clearDtmf();
There are no comments yet.