-
Couldn't load subscription status.
- Fork 174
Closed
Labels
Description
Hi,
I'd like to transform object property names to camelCase during serialization (and the reverse during deserialization). So if an object has the property IsInvalid, I'd like it to be serialized as isInvalid for interopability.
Currently for example, if a C# property is PascalCase and we try to deserialize in Java with camelCase (and no attributes), it won't work.
Is there a functionality to do that?
Thank you so much!