Back to project page Broadsheet.ie-Android.
The source code is released under:
Copyright (c) 2013 Karl Monaghan (http://karlmonaghan.com/) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Soft...
If you think the Android project Broadsheet.ie-Android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package ie.broadsheet.app.model.json; //from ww w. j a va 2 s. co m import java.util.List; import com.google.api.client.util.Key; public class SubmitTipResponse { @Key private int status; @Key private List<ResponseData> data; @Override public String toString() { return "SubmitTipResponse [status=" + status + ", data=" + data + "]"; } }