In my Android client I receive this JSON data from a backend:
[ [ 1427378400000, 553 ], [ 1427382000000, 553 ] ]
List productLevels = new ArrayList<>(); for(List p: list) { productLevels.add(new ProductLevel(p.get(0),p.get(1))); }
I think it should work.