That does not look like Java. Is it Kotlin? If so, I think there are a few issues filed:
https://github.com/FasterXML/jackson-module-kotlin/issues that talk about this problem. Fundamentally I think this stems from the fact that Java Bean convention considers boolean isSomeProperty() to imply property "someProperty" -- similar to `getSomeProperty()`, but just for booleans/Booleans. But same does NOT apply to fields, at least on pure Java side. However, if Kotlin creates getters perhaps logical property name is not properly resolved. I do not know enough about Kotlin or Kotlin module to comment more unfortunately, so I would suggest you look at reported issues, discussion there. -+ Tatu +- On Tue, May 21, 2019 at 11:20 AM Ahmed Kamal <[email protected]> wrote: > I have a data class like the following > > data class User(val id: String, > val name: String, > val isVerified: Boolean) > > When I'm trying to serialize it using io.vertx.core.json.Json.encode(user), > "which is uses Jackson underneath" I expect the result to be > > { > "id": "", > "name": "", > "isVerified": false > } > > but I got > > { > "id": "", > "name": "", > "verified": false > } > > -- > You received this message because you are subscribed to the Google Groups > "jackson-user" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/jackson-user/48889489-58d1-4b69-8fb8-58844bf1ec19%40googlegroups.com > <https://groups.google.com/d/msgid/jackson-user/48889489-58d1-4b69-8fb8-58844bf1ec19%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "jackson-user" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jackson-user/CAGrxA26eSQvPa44BZP-KBhwSRbUjn%3DKtYuEvZFpbXiz2%2BNsSAA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
