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
It would be nice if there was a flag for a property that decides whether it should only be serialized or deserialized.
For example, you could have
@JsonProperty("a", Number) a: number = 0; @JsonProperty("a", Number) b: number = 0;
Now you want deserialize the JSON property a to both class properties a and b, but when serializing you only want to use the class property a.
As of now, in that case there is a collision and b will override a.
The text was updated successfully, but these errors were encountered:
andreas-aeschlimann
No branches or pull requests
It would be nice if there was a flag for a property that decides whether it should only be serialized or deserialized.
For example, you could have
Now you want deserialize the JSON property a to both class properties a and b, but when serializing you only want to use the class property a.
As of now, in that case there is a collision and b will override a.
The text was updated successfully, but these errors were encountered: