This might be a duplicate. But I cannot find a solution to my Problem.
I have a class
public class MyResponse implements Serializable { private
When you are using Kotlin and data classes:
data class Dto( @get:JsonProperty("isSuccess") val isSuccess: Boolean )
You might need to add @param:JsonProperty("isSuccess") if you are going to deserialize JSON as well.
@param:JsonProperty("isSuccess")