package com.mobimvp.cliques.model; import com.google.gson.annotations.SerializedName; /** * Created by Van on 2014/11/8. */ public class Links { @SerializedName("web") public String web; @SerializedName("twitter") public String twitter; @Override public String toString() { return "Links [web=" + web + ", twitter=" + twitter + "]"; } }