How the HttpClient abstraction works
mainThe twilio.http.HttpClient is an abstraction that allows you to plug in any implementation for making HTTP requests.
twilio.http.HttpClient: The base abstraction/interface.twilio.http.TwilioHttpClient: The standard implementation provided by the library that wraps the underlying HTTP logic.
To create a custom client, you should inherit from TwilioHttpClient and override the request method.