Back to project page locchat-android.
The source code is released under:
GNU General Public License
If you think the Android project locchat-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 com.travisbporter.locchat.linx.json; /*w w w. j ava 2 s .co m*/ import com.google.gson.annotations.SerializedName; public class Response { @SerializedName("url") public String url; @SerializedName("filename") public String filename; @SerializedName("raw_url") public String urlRaw; @SerializedName("expiry") public long expiry; @SerializedName("delete_key") public String deleteKey; @SerializedName("size") public int size; @SerializedName("short_link") public String urlShort; @SerializedName("md5sum") public String md5sum; }