I have a JSON object like this:
{
\"user1\": {
\"timeSpent\": \"20.533333333333335h\",
\"worklog\": [
{
\"date\": \"06/26/2013\",
I had some problem before a month. As far as I remember it was because, same as you, I forgot to make "new" to objects. I mean that it should look:
public class User {
private String timeSpent;
private List worklogs = new List < WorkLog >();
}
Try this and I hope that it will help.
P.S. Also as Erik Pragt said you have array of Users, not just single one. So you will have to make 1 more class that contains a List < Users >.