Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created June 2, 2019 23:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/6a1a2c465961b827e7eee42ef4b59201 to your computer and use it in GitHub Desktop.
Save ryantm/6a1a2c465961b827e7eee42ef4b59201 to your computer and use it in GitHub Desktop.
/nix/store/a6affx6h4fnbkhdafl80xq25qq2f2h1h-python3.7-twilio-6.27.1
├── lib
│   └── python3.7
│   └── site-packages
│   ├── twilio
│   │   ├── base
│   │   │   ├── deserialize.py
│   │   │   ├── domain.py
│   │   │   ├── exceptions.py
│   │   │   ├── __init__.py
│   │   │   ├── instance_context.py
│   │   │   ├── instance_resource.py
│   │   │   ├── list_resource.py
│   │   │   ├── obsolete.py
│   │   │   ├── page.py
│   │   │   ├── __pycache__
│   │   │   │   ├── deserialize.cpython-37.pyc
│   │   │   │   ├── domain.cpython-37.pyc
│   │   │   │   ├── exceptions.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── instance_context.cpython-37.pyc
│   │   │   │   ├── instance_resource.cpython-37.pyc
│   │   │   │   ├── list_resource.cpython-37.pyc
│   │   │   │   ├── obsolete.cpython-37.pyc
│   │   │   │   ├── page.cpython-37.pyc
│   │   │   │   ├── serialize.cpython-37.pyc
│   │   │   │   ├── values.cpython-37.pyc
│   │   │   │   └── version.cpython-37.pyc
│   │   │   ├── serialize.py
│   │   │   ├── values.py
│   │   │   └── version.py
│   │   ├── compat.py
│   │   ├── http
│   │   │   ├── http_client.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── http_client.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── request.cpython-37.pyc
│   │   │   │   ├── response.cpython-37.pyc
│   │   │   │   └── validation_client.cpython-37.pyc
│   │   │   ├── request.py
│   │   │   ├── response.py
│   │   │   └── validation_client.py
│   │   ├── __init__.py
│   │   ├── jwt
│   │   │   ├── access_token
│   │   │   │   ├── grants.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── grants.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── client
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── compat.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── compat.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── taskrouter
│   │   │   │   ├── capabilities.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── capabilities.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   └── validation
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── __pycache__
│   │   │   ├── compat.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── request_validator.cpython-37.pyc
│   │   ├── request_validator.py
│   │   ├── rest
│   │   │   ├── accounts
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── v1
│   │   │   │   ├── credential
│   │   │   │   │   ├── aws.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── public_key.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   ├── aws.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── public_key.cpython-37.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── api
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── v2010
│   │   │   │   ├── account
│   │   │   │   │   ├── address
│   │   │   │   │   │   ├── dependent_phone_number.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   ├── dependent_phone_number.cpython-37.pyc
│   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   ├── application.py
│   │   │   │   │   ├── authorized_connect_app.py
│   │   │   │   │   ├── available_phone_number
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── local.py
│   │   │   │   │   │   ├── machine_to_machine.py
│   │   │   │   │   │   ├── mobile.py
│   │   │   │   │   │   ├── national.py
│   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   │   ├── local.cpython-37.pyc
│   │   │   │   │   │   │   ├── machine_to_machine.cpython-37.pyc
│   │   │   │   │   │   │   ├── mobile.cpython-37.pyc
│   │   │   │   │   │   │   ├── national.cpython-37.pyc
│   │   │   │   │   │   │   ├── shared_cost.cpython-37.pyc
│   │   │   │   │   │   │   ├── toll_free.cpython-37.pyc
│   │   │   │   │   │   │   └── voip.cpython-37.pyc
│   │   │   │   │   │   ├── shared_cost.py
│   │   │   │   │   │   ├── toll_free.py
│   │   │   │   │   │   └── voip.py
│   │   │   │   │   ├── balance.py
│   │   │   │   │   ├── call
│   │   │   │   │   │   ├── feedback.py
│   │   │   │   │   │   ├── feedback_summary.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── notification.py
│   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   ├── feedback.cpython-37.pyc
│   │   │   │   │   │   │   ├── feedback_summary.cpython-37.pyc
│   │   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   │   ├── notification.cpython-37.pyc
│   │   │   │   │   │   │   └── recording.cpython-37.pyc
│   │   │   │   │   │   └── recording.py
│   │   │   │   │   ├── conference
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── participant.py
│   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   │   ├── participant.cpython-37.pyc
│   │   │   │   │   │   │   └── recording.cpython-37.pyc
│   │   │   │   │   │   └── recording.py
│   │   │   │   │   ├── connect_app.py
│   │   │   │   │   ├── incoming_phone_number
│   │   │   │   │   │   ├── assigned_add_on
│   │   │   │   │   │   │   ├── assigned_add_on_extension.py
│   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   │   ├── assigned_add_on_extension.cpython-37.pyc
│   │   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── local.py
│   │   │   │   │   │   ├── mobile.py
│   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   │   ├── local.cpython-37.pyc
│   │   │   │   │   │   │   ├── mobile.cpython-37.pyc
│   │   │   │   │   │   │   └── toll_free.cpython-37.pyc
│   │   │   │   │   │   └── toll_free.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── key.py
│   │   │   │   │   ├── message
│   │   │   │   │   │   ├── feedback.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── media.py
│   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   ├── feedback.cpython-37.pyc
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   └── media.cpython-37.pyc
│   │   │   │   │   ├── new_key.py
│   │   │   │   │   ├── new_signing_key.py
│   │   │   │   │   ├── notification.py
│   │   │   │   │   ├── outgoing_caller_id.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── application.cpython-37.pyc
│   │   │   │   │   │   ├── authorized_connect_app.cpython-37.pyc
│   │   │   │   │   │   ├── balance.cpython-37.pyc
│   │   │   │   │   │   ├── connect_app.cpython-37.pyc
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── key.cpython-37.pyc
│   │   │   │   │   │   ├── new_key.cpython-37.pyc
│   │   │   │   │   │   ├── new_signing_key.cpython-37.pyc
│   │   │   │   │   │   ├── notification.cpython-37.pyc
│   │   │   │   │   │   ├── outgoing_caller_id.cpython-37.pyc
│   │   │   │   │   │   ├── short_code.cpython-37.pyc
│   │   │   │   │   │   ├── signing_key.cpython-37.pyc
│   │   │   │   │   │   ├── token.cpython-37.pyc
│   │   │   │   │   │   ├── transcription.cpython-37.pyc
│   │   │   │   │   │   └── validation_request.cpython-37.pyc
│   │   │   │   │   ├── queue
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── member.py
│   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   └── member.cpython-37.pyc
│   │   │   │   │   ├── recording
│   │   │   │   │   │   ├── add_on_result
│   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   ├── payload
│   │   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   │   └── transcription.cpython-37.pyc
│   │   │   │   │   │   └── transcription.py
│   │   │   │   │   ├── short_code.py
│   │   │   │   │   ├── signing_key.py
│   │   │   │   │   ├── sip
│   │   │   │   │   │   ├── credential_list
│   │   │   │   │   │   │   ├── credential.py
│   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   │   ├── credential.cpython-37.pyc
│   │   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── domain
│   │   │   │   │   │   │   ├── auth_types
│   │   │   │   │   │   │   │   ├── auth_calls_mapping
│   │   │   │   │   │   │   │   │   ├── auth_calls_credential_list_mapping.py
│   │   │   │   │   │   │   │   │   ├── auth_calls_ip_access_control_list_mapping.py
│   │   │   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   │   │   │   ├── auth_calls_credential_list_mapping.cpython-37.pyc
│   │   │   │   │   │   │   │   │   ├── auth_calls_ip_access_control_list_mapping.cpython-37.pyc
│   │   │   │   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   │   │   │   ├── auth_registrations_mapping
│   │   │   │   │   │   │   │   │   ├── auth_registrations_credential_list_mapping.py
│   │   │   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   │   │   │   ├── auth_registrations_credential_list_mapping.cpython-37.pyc
│   │   │   │   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   │   │   ├── credential_list_mapping.py
│   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   ├── ip_access_control_list_mapping.py
│   │   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   │   ├── credential_list_mapping.cpython-37.pyc
│   │   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   │   └── ip_access_control_list_mapping.cpython-37.pyc
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── ip_access_control_list
│   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   ├── ip_address.py
│   │   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   │   └── ip_address.cpython-37.pyc
│   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   ├── token.py
│   │   │   │   │   ├── transcription.py
│   │   │   │   │   ├── usage
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   │   └── trigger.cpython-37.pyc
│   │   │   │   │   │   ├── record
│   │   │   │   │   │   │   ├── all_time.py
│   │   │   │   │   │   │   ├── daily.py
│   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   ├── last_month.py
│   │   │   │   │   │   │   ├── monthly.py
│   │   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   │   ├── all_time.cpython-37.pyc
│   │   │   │   │   │   │   │   ├── daily.cpython-37.pyc
│   │   │   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   │   │   ├── last_month.cpython-37.pyc
│   │   │   │   │   │   │   │   ├── monthly.cpython-37.pyc
│   │   │   │   │   │   │   │   ├── this_month.cpython-37.pyc
│   │   │   │   │   │   │   │   ├── today.cpython-37.pyc
│   │   │   │   │   │   │   │   ├── yearly.cpython-37.pyc
│   │   │   │   │   │   │   │   └── yesterday.cpython-37.pyc
│   │   │   │   │   │   │   ├── this_month.py
│   │   │   │   │   │   │   ├── today.py
│   │   │   │   │   │   │   ├── yearly.py
│   │   │   │   │   │   │   └── yesterday.py
│   │   │   │   │   │   └── trigger.py
│   │   │   │   │   └── validation_request.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── authy
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── v1
│   │   │   │   ├── form.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── form.cpython-37.pyc
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── service
│   │   │   │   ├── entity
│   │   │   │   │   ├── factor
│   │   │   │   │   │   ├── challenge.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   ├── challenge.cpython-37.pyc
│   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── autopilot
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── v1
│   │   │   │   ├── assistant
│   │   │   │   │   ├── defaults.py
│   │   │   │   │   ├── dialogue.py
│   │   │   │   │   ├── field_type
│   │   │   │   │   │   ├── field_value.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   ├── field_value.cpython-37.pyc
│   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── model_build.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── defaults.cpython-37.pyc
│   │   │   │   │   │   ├── dialogue.cpython-37.pyc
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── model_build.cpython-37.pyc
│   │   │   │   │   │   ├── query.cpython-37.pyc
│   │   │   │   │   │   └── style_sheet.cpython-37.pyc
│   │   │   │   │   ├── query.py
│   │   │   │   │   ├── style_sheet.py
│   │   │   │   │   └── task
│   │   │   │   │   ├── field.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── field.cpython-37.pyc
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── sample.cpython-37.pyc
│   │   │   │   │   │   ├── task_actions.cpython-37.pyc
│   │   │   │   │   │   └── task_statistics.cpython-37.pyc
│   │   │   │   │   ├── sample.py
│   │   │   │   │   ├── task_actions.py
│   │   │   │   │   └── task_statistics.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── chat
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   ├── v1
│   │   │   │   │   ├── credential.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── credential.cpython-37.pyc
│   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   └── service
│   │   │   │   │   ├── channel
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── invite.py
│   │   │   │   │   │   ├── member.py
│   │   │   │   │   │   ├── message.py
│   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── invite.cpython-37.pyc
│   │   │   │   │   │   ├── member.cpython-37.pyc
│   │   │   │   │   │   └── message.cpython-37.pyc
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   └── role.cpython-37.pyc
│   │   │   │   │   ├── role.py
│   │   │   │   │   └── user
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   └── user_channel.cpython-37.pyc
│   │   │   │   │   └── user_channel.py
│   │   │   │   └── v2
│   │   │   │   ├── credential.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── credential.cpython-37.pyc
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── service
│   │   │   │   ├── binding.py
│   │   │   │   ├── channel
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── invite.py
│   │   │   │   │   ├── member.py
│   │   │   │   │   ├── message.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── invite.cpython-37.pyc
│   │   │   │   │   │   ├── member.cpython-37.pyc
│   │   │   │   │   │   ├── message.cpython-37.pyc
│   │   │   │   │   │   └── webhook.cpython-37.pyc
│   │   │   │   │   └── webhook.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── binding.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── role.cpython-37.pyc
│   │   │   │   ├── role.py
│   │   │   │   └── user
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── user_binding.cpython-37.pyc
│   │   │   │   │   └── user_channel.cpython-37.pyc
│   │   │   │   ├── user_binding.py
│   │   │   │   └── user_channel.py
│   │   │   ├── fax
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── v1
│   │   │   │   ├── fax
│   │   │   │   │   ├── fax_media.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   ├── fax_media.cpython-37.pyc
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── flex_api
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── v1
│   │   │   │   ├── configuration.py
│   │   │   │   ├── flex_flow.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── configuration.cpython-37.pyc
│   │   │   │   ├── flex_flow.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── __init__.py
│   │   │   ├── insights
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── v1
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── summary.cpython-37.pyc
│   │   │   │   └── summary.py
│   │   │   ├── ip_messaging
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   ├── v1
│   │   │   │   │   ├── credential.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── credential.cpython-37.pyc
│   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   └── service
│   │   │   │   │   ├── channel
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── invite.py
│   │   │   │   │   │   ├── member.py
│   │   │   │   │   │   ├── message.py
│   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── invite.cpython-37.pyc
│   │   │   │   │   │   ├── member.cpython-37.pyc
│   │   │   │   │   │   └── message.cpython-37.pyc
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   └── role.cpython-37.pyc
│   │   │   │   │   ├── role.py
│   │   │   │   │   └── user
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   └── user_channel.cpython-37.pyc
│   │   │   │   │   └── user_channel.py
│   │   │   │   └── v2
│   │   │   │   ├── credential.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── credential.cpython-37.pyc
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── service
│   │   │   │   ├── binding.py
│   │   │   │   ├── channel
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── invite.py
│   │   │   │   │   ├── member.py
│   │   │   │   │   ├── message.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── invite.cpython-37.pyc
│   │   │   │   │   │   ├── member.cpython-37.pyc
│   │   │   │   │   │   ├── message.cpython-37.pyc
│   │   │   │   │   │   └── webhook.cpython-37.pyc
│   │   │   │   │   └── webhook.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── binding.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── role.cpython-37.pyc
│   │   │   │   ├── role.py
│   │   │   │   └── user
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── user_binding.cpython-37.pyc
│   │   │   │   │   └── user_channel.cpython-37.pyc
│   │   │   │   ├── user_binding.py
│   │   │   │   └── user_channel.py
│   │   │   ├── lookups
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── v1
│   │   │   │   ├── __init__.py
│   │   │   │   ├── phone_number.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── phone_number.cpython-37.pyc
│   │   │   ├── messaging
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── v1
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── webhook.cpython-37.pyc
│   │   │   │   ├── service
│   │   │   │   │   ├── alpha_sender.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── phone_number.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── alpha_sender.cpython-37.pyc
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── phone_number.cpython-37.pyc
│   │   │   │   │   │   └── short_code.cpython-37.pyc
│   │   │   │   │   └── short_code.py
│   │   │   │   ├── session
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── message.py
│   │   │   │   │   ├── participant.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── message.cpython-37.pyc
│   │   │   │   │   │   ├── participant.cpython-37.pyc
│   │   │   │   │   │   └── webhook.cpython-37.pyc
│   │   │   │   │   └── webhook.py
│   │   │   │   └── webhook.py
│   │   │   ├── monitor
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── v1
│   │   │   │   ├── alert.py
│   │   │   │   ├── event.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── alert.cpython-37.pyc
│   │   │   │   ├── event.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── notify
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── v1
│   │   │   │   ├── credential.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── credential.cpython-37.pyc
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── service
│   │   │   │   ├── binding.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── notification.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── binding.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── notification.cpython-37.pyc
│   │   │   ├── preview
│   │   │   │   ├── acc_security
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   └── service
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── verification_check.cpython-37.pyc
│   │   │   │   │   │   └── verification.cpython-37.pyc
│   │   │   │   │   ├── verification_check.py
│   │   │   │   │   └── verification.py
│   │   │   │   ├── bulk_exports
│   │   │   │   │   ├── export
│   │   │   │   │   │   ├── day.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   ├── day.cpython-37.pyc
│   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   ├── export_configuration.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   ├── export_configuration.cpython-37.pyc
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   ├── deployed_devices
│   │   │   │   │   ├── fleet
│   │   │   │   │   │   ├── certificate.py
│   │   │   │   │   │   ├── deployment.py
│   │   │   │   │   │   ├── device.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── key.py
│   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   ├── certificate.cpython-37.pyc
│   │   │   │   │   │   ├── deployment.cpython-37.pyc
│   │   │   │   │   │   ├── device.cpython-37.pyc
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   └── key.cpython-37.pyc
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   ├── hosted_numbers
│   │   │   │   │   ├── authorization_document
│   │   │   │   │   │   ├── dependent_hosted_number_order.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   ├── dependent_hosted_number_order.cpython-37.pyc
│   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   ├── hosted_number_order.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   ├── hosted_number_order.cpython-37.pyc
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   ├── marketplace
│   │   │   │   │   ├── available_add_on
│   │   │   │   │   │   ├── available_add_on_extension.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   ├── available_add_on_extension.cpython-37.pyc
│   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── installed_add_on
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── installed_add_on_extension.py
│   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   └── installed_add_on_extension.cpython-37.pyc
│   │   │   │   │   └── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   ├── sync
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   └── service
│   │   │   │   │   ├── document
│   │   │   │   │   │   ├── document_permission.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   ├── document_permission.cpython-37.pyc
│   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   ├── sync_list
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   │   ├── sync_list_item.cpython-37.pyc
│   │   │   │   │   │   │   └── sync_list_permission.cpython-37.pyc
│   │   │   │   │   │   ├── sync_list_item.py
│   │   │   │   │   │   └── sync_list_permission.py
│   │   │   │   │   └── sync_map
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── sync_map_item.cpython-37.pyc
│   │   │   │   │   │   └── sync_map_permission.cpython-37.pyc
│   │   │   │   │   ├── sync_map_item.py
│   │   │   │   │   └── sync_map_permission.py
│   │   │   │   ├── trusted_comms
│   │   │   │   │   ├── current_call.py
│   │   │   │   │   ├── device.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── phone_call.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   ├── current_call.cpython-37.pyc
│   │   │   │   │   ├── device.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── phone_call.cpython-37.pyc
│   │   │   │   ├── understand
│   │   │   │   │   ├── assistant
│   │   │   │   │   │   ├── assistant_fallback_actions.py
│   │   │   │   │   │   ├── assistant_initiation_actions.py
│   │   │   │   │   │   ├── dialogue.py
│   │   │   │   │   │   ├── field_type
│   │   │   │   │   │   │   ├── field_value.py
│   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   │   ├── field_value.cpython-37.pyc
│   │   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── model_build.py
│   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   ├── assistant_fallback_actions.cpython-37.pyc
│   │   │   │   │   │   │   ├── assistant_initiation_actions.cpython-37.pyc
│   │   │   │   │   │   │   ├── dialogue.cpython-37.pyc
│   │   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   │   ├── model_build.cpython-37.pyc
│   │   │   │   │   │   │   ├── query.cpython-37.pyc
│   │   │   │   │   │   │   └── style_sheet.cpython-37.pyc
│   │   │   │   │   │   ├── query.py
│   │   │   │   │   │   ├── style_sheet.py
│   │   │   │   │   │   └── task
│   │   │   │   │   │   ├── field.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   ├── field.cpython-37.pyc
│   │   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   │   ├── sample.cpython-37.pyc
│   │   │   │   │   │   │   ├── task_actions.cpython-37.pyc
│   │   │   │   │   │   │   └── task_statistics.cpython-37.pyc
│   │   │   │   │   │   ├── sample.py
│   │   │   │   │   │   ├── task_actions.py
│   │   │   │   │   │   └── task_statistics.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── wireless
│   │   │   │   ├── command.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── command.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── rate_plan.cpython-37.pyc
│   │   │   │   ├── rate_plan.py
│   │   │   │   └── sim
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── usage.cpython-37.pyc
│   │   │   │   └── usage.py
│   │   │   ├── pricing
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   ├── v1
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── messaging
│   │   │   │   │   │   ├── country.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   ├── country.cpython-37.pyc
│   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   ├── phone_number
│   │   │   │   │   │   ├── country.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   ├── country.cpython-37.pyc
│   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   └── voice
│   │   │   │   │   ├── country.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── number.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   ├── country.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── number.cpython-37.pyc
│   │   │   │   └── v2
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── voice
│   │   │   │   ├── country.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── number.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── country.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── number.cpython-37.pyc
│   │   │   ├── proxy
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── v1
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── service
│   │   │   │   ├── __init__.py
│   │   │   │   ├── phone_number.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── phone_number.cpython-37.pyc
│   │   │   │   │   └── short_code.cpython-37.pyc
│   │   │   │   ├── session
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── interaction.py
│   │   │   │   │   ├── participant
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── message_interaction.py
│   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   └── message_interaction.cpython-37.pyc
│   │   │   │   │   └── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── interaction.cpython-37.pyc
│   │   │   │   └── short_code.py
│   │   │   ├── __pycache__
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── serverless
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── v1
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── service
│   │   │   │   ├── asset
│   │   │   │   │   ├── asset_version.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   ├── asset_version.cpython-37.pyc
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   ├── build.py
│   │   │   │   ├── environment
│   │   │   │   │   ├── deployment.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── deployment.cpython-37.pyc
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   └── variable.cpython-37.pyc
│   │   │   │   │   └── variable.py
│   │   │   │   ├── function
│   │   │   │   │   ├── function_version.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   ├── function_version.cpython-37.pyc
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   ├── build.cpython-37.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── studio
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── v1
│   │   │   │   ├── flow
│   │   │   │   │   ├── engagement
│   │   │   │   │   │   ├── engagement_context.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   ├── engagement_context.cpython-37.pyc
│   │   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   │   └── step
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   │   └── step_context.cpython-37.pyc
│   │   │   │   │   │   └── step_context.py
│   │   │   │   │   ├── execution
│   │   │   │   │   │   ├── execution_context.py
│   │   │   │   │   │   ├── execution_step
│   │   │   │   │   │   │   ├── execution_step_context.py
│   │   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   │   ├── execution_step_context.cpython-37.pyc
│   │   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   ├── execution_context.cpython-37.pyc
│   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── sync
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── v1
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── service
│   │   │   │   ├── document
│   │   │   │   │   ├── document_permission.py
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   ├── document_permission.cpython-37.pyc
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   ├── sync_list
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── sync_list_item.cpython-37.pyc
│   │   │   │   │   │   └── sync_list_permission.cpython-37.pyc
│   │   │   │   │   ├── sync_list_item.py
│   │   │   │   │   └── sync_list_permission.py
│   │   │   │   ├── sync_map
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── sync_map_item.cpython-37.pyc
│   │   │   │   │   │   └── sync_map_permission.cpython-37.pyc
│   │   │   │   │   ├── sync_map_item.py
│   │   │   │   │   └── sync_map_permission.py
│   │   │   │   └── sync_stream
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── stream_message.cpython-37.pyc
│   │   │   │   └── stream_message.py
│   │   │   ├── taskrouter
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── v1
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── workspace
│   │   │   │   ├── activity.py
│   │   │   │   ├── event.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── activity.cpython-37.pyc
│   │   │   │   │   ├── event.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── task_channel.cpython-37.pyc
│   │   │   │   │   ├── workspace_cumulative_statistics.cpython-37.pyc
│   │   │   │   │   ├── workspace_real_time_statistics.cpython-37.pyc
│   │   │   │   │   └── workspace_statistics.cpython-37.pyc
│   │   │   │   ├── task
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   └── reservation.cpython-37.pyc
│   │   │   │   │   └── reservation.py
│   │   │   │   ├── task_channel.py
│   │   │   │   ├── task_queue
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── task_queue_cumulative_statistics.cpython-37.pyc
│   │   │   │   │   │   ├── task_queue_real_time_statistics.cpython-37.pyc
│   │   │   │   │   │   ├── task_queues_statistics.cpython-37.pyc
│   │   │   │   │   │   └── task_queue_statistics.cpython-37.pyc
│   │   │   │   │   ├── task_queue_cumulative_statistics.py
│   │   │   │   │   ├── task_queue_real_time_statistics.py
│   │   │   │   │   ├── task_queues_statistics.py
│   │   │   │   │   └── task_queue_statistics.py
│   │   │   │   ├── worker
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── reservation.cpython-37.pyc
│   │   │   │   │   │   ├── worker_channel.cpython-37.pyc
│   │   │   │   │   │   ├── workers_cumulative_statistics.cpython-37.pyc
│   │   │   │   │   │   ├── workers_real_time_statistics.cpython-37.pyc
│   │   │   │   │   │   ├── workers_statistics.cpython-37.pyc
│   │   │   │   │   │   └── worker_statistics.cpython-37.pyc
│   │   │   │   │   ├── reservation.py
│   │   │   │   │   ├── worker_channel.py
│   │   │   │   │   ├── workers_cumulative_statistics.py
│   │   │   │   │   ├── workers_real_time_statistics.py
│   │   │   │   │   ├── workers_statistics.py
│   │   │   │   │   └── worker_statistics.py
│   │   │   │   ├── workflow
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   ├── workflow_cumulative_statistics.cpython-37.pyc
│   │   │   │   │   │   ├── workflow_real_time_statistics.cpython-37.pyc
│   │   │   │   │   │   └── workflow_statistics.cpython-37.pyc
│   │   │   │   │   ├── workflow_cumulative_statistics.py
│   │   │   │   │   ├── workflow_real_time_statistics.py
│   │   │   │   │   └── workflow_statistics.py
│   │   │   │   ├── workspace_cumulative_statistics.py
│   │   │   │   ├── workspace_real_time_statistics.py
│   │   │   │   └── workspace_statistics.py
│   │   │   ├── trunking
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── v1
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── trunk
│   │   │   │   ├── credential_list.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── ip_access_control_list.py
│   │   │   │   ├── origination_url.py
│   │   │   │   ├── phone_number.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── credential_list.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── ip_access_control_list.cpython-37.pyc
│   │   │   │   │   ├── origination_url.cpython-37.pyc
│   │   │   │   │   ├── phone_number.cpython-37.pyc
│   │   │   │   │   └── terminating_sip_domain.cpython-37.pyc
│   │   │   │   └── terminating_sip_domain.py
│   │   │   ├── verify
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── v2
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── service
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── verification_check.cpython-37.pyc
│   │   │   │   │   └── verification.cpython-37.pyc
│   │   │   │   ├── verification_check.py
│   │   │   │   └── verification.py
│   │   │   ├── video
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── v1
│   │   │   │   ├── composition
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   ├── composition_hook.py
│   │   │   │   ├── composition_settings.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── composition_hook.cpython-37.pyc
│   │   │   │   │   ├── composition_settings.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   └── recording_settings.cpython-37.pyc
│   │   │   │   ├── recording
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   ├── recording_settings.py
│   │   │   │   └── room
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   ├── recording
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   └── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── room_participant
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── room_participant_published_track.cpython-37.pyc
│   │   │   │   │   ├── room_participant_subscribed_track.cpython-37.pyc
│   │   │   │   │   └── room_participant_subscribe_rule.cpython-37.pyc
│   │   │   │   ├── room_participant_published_track.py
│   │   │   │   ├── room_participant_subscribed_track.py
│   │   │   │   └── room_participant_subscribe_rule.py
│   │   │   ├── voice
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   └── v1
│   │   │   │   ├── dialing_permissions
│   │   │   │   │   ├── bulk_country_update.py
│   │   │   │   │   ├── country
│   │   │   │   │   │   ├── highrisk_special_prefix.py
│   │   │   │   │   │   ├── __init__.py
│   │   │   │   │   │   └── __pycache__
│   │   │   │   │   │   ├── highrisk_special_prefix.cpython-37.pyc
│   │   │   │   │   │   └── __init__.cpython-37.pyc
│   │   │   │   │   ├── __init__.py
│   │   │   │   │   ├── __pycache__
│   │   │   │   │   │   ├── bulk_country_update.cpython-37.pyc
│   │   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   │   └── settings.cpython-37.pyc
│   │   │   │   │   └── settings.py
│   │   │   │   ├── __init__.py
│   │   │   │   └── __pycache__
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   └── wireless
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   └── v1
│   │   │   ├── command.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── command.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── rate_plan.cpython-37.pyc
│   │   │   ├── rate_plan.py
│   │   │   └── sim
│   │   │   ├── data_session.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── data_session.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── usage_record.cpython-37.pyc
│   │   │   └── usage_record.py
│   │   └── twiml
│   │   ├── fax_response.py
│   │   ├── __init__.py
│   │   ├── messaging_response.py
│   │   ├── __pycache__
│   │   │   ├── fax_response.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── messaging_response.cpython-37.pyc
│   │   │   └── voice_response.cpython-37.pyc
│   │   └── voice_response.py
│   └── twilio-6.27.1.dist-info
│   ├── AUTHORS.md
│   ├── INSTALLER
│   ├── LICENSE.md
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
335 directories, 808 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment