このJSONをJavaオブジェクトに変換するのを手伝ってくれませんか。普段はGSONを使っているのですが、今回はうまくいかないようです。問題は、含むオブジェクトを作成したいということです
Class JsonGotText{
String status;
List<Object> result;
}
しかし、リスト内のすべてのオブジェクトはすべて異なるプロパティです...だから、Gsonに正しくマップさせる方法を知っています
{
"status": 0,
"result": {
"1346053628": {
"type": "default",
"decorated_time": 1346053628,
"guidOwner": 13716,
"friendGuid": 3264,
"action_type": "friend",
"summary": " is now a friend with ",
"annotation": null,
"group": ""
},
"1346051675": {
"type": "event",
"decorated_time": 1346051675,
"guidOwner": 90,
"title": null,
"action_type": "event_relationship",
"summary": "river:event_relationship:object:event",
"annotation": null,
"group": ""
},
"1346048488": {
"type": "event",
"decorated_time": 1346048488,
"guidOwner": 90,
"title": null,
"action_type": "event_relationship",
"summary": "river:event_relationship:object:event",
"annotation": null,
"group": ""
}
}
}