-
Notifications
You must be signed in to change notification settings - Fork 3
Description
Hi there, I have a question regarding #49.
The removal of the *_with_http_info or *_without_preload_content methods broke everything, was this intentional? Should we proceed with the assumption that such methods won't be available?
I ask because methods like user_service_add_human_user skip deserialization inside response_deserialize whenever the _response_types_map lacks a code, which in the case of that method if the user already exists you don't get the error message, which is why I ended up using the *_without_preload_content and parsing things myself (clunky but what to do, your library silently swallows the original response).
I don't mind losing the *_with_http_info or *_without_preload_content but at think something should be done about missing error codes.
Perhaps include 409 responses in the spec? I assume that would resolve the issue? Or change the library to avoid throwing away the original response data (which happens in response_deserialize).
I'm just making suggestions, you guys know better. Thanks for reading.