Skip to content

Instantly share code, notes, and snippets.

@superfell
Created November 10, 2011 20:46
Show Gist options
  • Save superfell/1356163 to your computer and use it in GitHub Desktop.
Save superfell/1356163 to your computer and use it in GitHub Desktop.
public class Data {
public Boolean installed;
public String id;
}
public class Paging {
public String next;
}
public class Root {
public List<Data> data;
public Paging paging;
}
public static Root parse(String json) {
return (Root) System.JSON.deserialize(json, Root.class);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment