We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
opengever.base.response.Responses are not getting validated, neither upon creation in code, nor when generated over API. Moreover note that:
opengever.base.response.Response
__init__
text = ''
text
schema.Text
None
The text was updated successfully, but these errors were encountered:
No branches or pull requests
opengever.base.response.Response
s are not getting validated, neither upon creation in code, nor when generated over API. Moreover note that:__init__
we used to settext = ''
, buttext
is aschema.Text
field, and should therefore be unicode. This was fixed in Use BaseResponse for proposal history to add API support #6039__init__
we defaulttext
to an empty string, but in the schema definition we used to have (before Use BaseResponse for proposal history to add API support #6039) the defaulted toNone
The text was updated successfully, but these errors were encountered: