Can anyone help me in parsing below json using retrofit?
{
"key1": "value",
"key2": {
"key3": "value2",
"key4": "some random text is here"
},
"value2" : {
-- actual data is here ---
}
}
here "value2" will change. i'm not able to figure how to get the value of "Key3" and get the actual data using Retrofit.
Thanks in advance.