You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I used camelCase to more closely mirror the REST API JSON, but it's generally not considered good/proper Python naming convention, and it should be possible to parse/format to and from each anyway...
So I think we should change all our camelCase class member variable names, e.g. shortDescription -> short_description in the Python objects themselves... then, what about the dict? Or do we just rewrite the dict back to camelCase just before doing a POST or PUT?
(I'm not convinced it's worth it, so leaving this issue open for input from others - it would be a breaking change for a major release in the future)
The text was updated successfully, but these errors were encountered:
I used camelCase to more closely mirror the REST API JSON, but it's generally not considered good/proper Python naming convention, and it should be possible to parse/format to and from each anyway...
So I think we should change all our camelCase class member variable names, e.g.
shortDescription
->short_description
in the Python objects themselves... then, what about the dict? Or do we just rewrite the dict back to camelCase just before doing a POST or PUT?(I'm not convinced it's worth it, so leaving this issue open for input from others - it would be a breaking change for a major release in the future)
The text was updated successfully, but these errors were encountered: