Back to project page nemo.
The source code is released under:
Apache License
If you think the Android project nemo 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.networking.nemo.example; // ww w .ja v a 2 s .com import com.google.gson.annotations.SerializedName; public class User { @SerializedName("user_id") private String mId; public String getId() { return mId; } public void setId(String id) { mId = id; } }