I am trying to parse a JSON Response which is containing multiple JSON objects. Here is my code:
{
"All": {
"name": "All",
"display": "All"
},
"Apparel": {
"name": "Apparel",
"display": "Apparel"
},
"Appliances": {
"name": "Appliances",
"display": "Appliances"
}
}
I had tried single object parsing response in Json, that I able to fetch. But I don't not know how to parse the Json object with Multiple nodes. I had tried, but could not able to succeed in this.