I'm using jackson to deserialize JSON to my data c...
# jackson-kotlin
f
I'm using jackson to deserialize JSON to my data classes (using KotlinModule). I have a value that I map to a domain enum, transforming it from the String original JSON value. So in my data class I declared the field as `private var`in the constructor and I provide a custom getter and setter that manages the logic of going from String to enum value. But i'm getting an error from jackson: "com.fasterxml.jackson.databind.exc.InvalidFormatException: Can not construct instance of {my domain class} from String value {string value from JSON}"