Back to project page droidcon.
The source code is released under:
Apache License
If you think the Android project droidcon 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.timehop.droidcon2014retrofitsample.data.foursquare.api; /*from w ww. j a v a 2 s . c o m*/ import com.google.gson.annotations.SerializedName; import com.timehop.droidcon2014retrofitsample.data.foursquare.model.Meta; import com.timehop.droidcon2014retrofitsample.data.foursquare.model.ResponseWrapper; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; public class FoursquareResponse { public static final String FIELD_RESPONSE = "response"; public static final String FIELD_META = "meta"; @SerializedName(FIELD_META) @NotNull private Meta meta; @SerializedName(FIELD_RESPONSE) @Nullable private ResponseWrapper response; @NotNull public Meta getMeta() { return meta; } public ResponseWrapper getResponse() { return response; } }