(ask_for_confirmation: bool)
| 54 | |
| 55 | |
| 56 | def get_dtmf_task(ask_for_confirmation: bool) -> beta.workflows.GetDtmfTask: |
| 57 | return beta.workflows.GetDtmfTask( |
| 58 | num_digits=10, |
| 59 | ask_for_confirmation=ask_for_confirmation, |
| 60 | extra_instructions="Let the caller know you'll record their 10-digit account number and that they can speak or dial it. ", |
| 61 | ) |
| 62 | |
| 63 | |
| 64 | @pytest.mark.asyncio |
no outgoing calls
no test coverage detected