I have json with field that contains two different types.
"fields":[{"value":"ZIELONE OKO"},{"value":{"@nil":"true"}}]
I have problem with deserializing these. My class with model contains:
private String value;
And I simply need to translate {"@nil":"true"} into null. Right now I get error:
The JsonDeserializer StringTypeAdapter failed to deserialized json object {"@nil":"true"} given the type class java.lang.String
Any ideas how to resolve that?