when deserializing below JSON, it fails with above exception message when trying to parse the server attribute which has its type 'string' nested within it, how to parse a JSON which is having the attribute types nested within each attribute like below?
{
"header": {
"time": 1492178674232,
"threadId": null,
"requestMarker": null,
"env": null,
**"server": {
"string": "astapp078"
}**,
"service": {
"string": "ApiCalendarsEntityStreamPublisher"
}
}
}