-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: added boolean_to_string converter for python #554
Conversation
Quality Gate passed for 'twilio-oai-generator-java'Issues Measures |
Quality Gate passed for 'twilio-oai-generator-php'Issues Measures |
Quality Gate passed for 'twilio-oai-generator-ruby'Issues Measures |
Quality Gate passed for 'twilio-oai-generator-node'Issues Measures |
Quality Gate passed for 'twilio-oai-generator-python'Issues Measures |
Quality Gate passed for 'twilio-oai-generator-go'Issues Measures |
Here is the twilio-python PR with changes |
Fixes
In Python, booleans are
True
andFalse
(instead oftrue
andfalse
in other languages). Due to this, while creating request body, the booleans are getting passed as 'True' to the API downstream, while it is expecting 'true'. So this fix adds a boolean_to_string converter for python which passes the expected boolean string to API downstreams.Checklist
make test-docker
make test
intwilio-python
twilio-python
If you have questions, please create a GitHub Issue in this repository.