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
I have the following RAML file:
#%RAML 1.0 --- title: e-BookMobile API baseUri: http://api.e-bookmobile.com/{version} version: v1 types: song: { "type": "object", "properties": { "songTitle": { "type": "any", } } }
which supposedly should return something like this
class Song { protected Object songTitle; }
Instead, a generated class for that type is:
public class Song implements Serializable { final static long serialVersionUID = 8991256900525939275L; protected Void songTitle; ...
Are there any workarounds to receive songTitle with Object type?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have the following RAML file:
which supposedly should return something like this
Instead, a generated class for that type is:
Are there any workarounds to receive songTitle with Object type?
The text was updated successfully, but these errors were encountered: