Jackson can't deserialize some values with @get:JsonProperty
When I'm trying to deserialize code below import com.fasterxml.jackson.annotation.JsonProperty import com.fasterxml.jackson.module.kotlin.jacksonObjectMapper fun main() { val objectMapper = jacksonObjectMapper() val jsonString = "{" + ""v_string1": "some_string1", " + ""v_string2": "some_string2", " + ""v_string3": "some_string3", " + ""v_string4": "some_string4"" + "}" val…