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.model; //w ww .j ava 2s .com import com.google.gson.annotations.SerializedName; import org.jetbrains.annotations.Nullable; public class Meta { public static final String FIELD_CODE = "code"; public static final String FIELD_ERROR_TYPE = "errorType"; public static final String FIELD_ERROR_DETAIL = "errorDetail"; public static final String FIELD_MESSAGE = "message"; @SerializedName(FIELD_CODE) private int code; @SerializedName(FIELD_ERROR_TYPE) @Nullable private String errorType; @SerializedName(FIELD_ERROR_DETAIL) @Nullable private String errorDetail; @SerializedName(FIELD_MESSAGE) @Nullable private String message; public int getCode() { return code; } @Nullable public String getErrorType() { return errorType; } @Nullable public String getErrorDetail() { return errorDetail; } @Nullable public String getMessage() { return message; } }