I receive JSON response in the form of the following:
{
"result" : {
"status" : 0,
"resultItems" : {
"MultiItemDetails" : {
"min" : 3,
...
"items" : [{
"SingleItem" : {
"active" : false,
"type" : 2,
...
}
}, {
"MultiItemDetails" : {
"min" : 1,
...
"items": [{
"SingleItem" : {
"active" : true,
"type" : 1,
...
}
},{
"SingleItem" : {
"active" : true,
"type" : 2,
...
}
}]
}
}]
}
}
}
}
What would be the best way to create and organize my POJOs?
Thanks!