JSON to Java object deserialization exception
@Data @NoArgsConstructor @AllArgsConstructor public class MatchingResponse { @JsonProperty(value = "Code") private String code; @JsonProperty(value = "Msg") private String message; @JsonProperty(value = "Id") private int id; @JsonProperty(value = "Date") private String date; @JsonProperty(value = "ClientIin") private String clientIin; @JsonProperty(value = "Similarity")…