kotlin 1.2.10 jackson-module-kotlin:2.9.0
I have the following data class in kotlin:
data class CurrencyInfo( @JsonProperty(\"currency_info\"
You can add the jackson-module-kotlin (https://github.com/FasterXML/jackson-module-kotlin) and register the kotlin module with jackson:
jackson-module-kotlin
val mapper = ObjectMapper().registerModule(KotlinModule())
Then it (and many other things) works automagically.