Closed
Description
Serializer like Jackson's ObjectMapper are using method names for serialization and deserialization.
Prefixes like get/set/is will be removed and the following String will be used as parameter names.
For the property isBase64Encoded the method names are:
- isBase64Encoded
- setIsBase64Encoded
This leads to a serialization of
{ "base64Encoded" }
which can not be deserialized because the expected value name is: isBase64Encoded
Please rename the getter to getIsBase64Encoded or isIsBase64Encoded, so that the property is serialized as:
{ "isBase64Encoded" }