I have json that made of JSONObject that has JSONArray inside. For example,
"value" : {
"serial":"125",
"online":"N",
"menus":[
{"menu_name":"name","price":"2000"},{"menu_name":"name","price":"2000"}...
]
}
Can I parse this json to data object using Gson??
EDIT : I saw that example but that was Jsonarray that isn't made of jsonobject.