Hi how do I deserialize json objects of the type?
{"photo":{"id":5, "url":"http://pics.com/pic1.jpg"}};
Because normally I would create a Class:
public class Photo{
private int id;
private String url;
public Photo(){
}
}
And then just run it using:
GsonBuilder gsonb = new GsonBuilder();
Gson gson = gsonb.create();
Photo photo = gson.fromJson(response, Photo.class);
But that just fills everything with nulls. It would work if I the Json was only
{"id":5, "url":"http://pics.com/pic1.jpg"}
Any ideas?
Thanks
