I want to parse the following json using gson, my issue is i cant predict the keys "12345", "ABCD", "PKKK", etc. Please help me in creating model classes.
{
"data": {
"data": {
"DEQUE": {
"12345": {
"title": "Anil",
"location": "New york"
},
"ABCD": {
"title": "Sonu",
"location": "Delhi"
},
"PKKK": {
"title": "Monu",
"location": "Patiala"
}
}
}
}
}