Back to project page kickflip-android-sdk.
The source code is released under:
Apache License
If you think the Android project kickflip-android-sdk 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 io.kickflip.sdk.api.json; //from w w w . j a va2 s. c o m import com.google.api.client.util.Key; /** * JSON API object for Kickflip Responses */ public class Response { @Key("success") private boolean mSuccess; @Key("reason") private String mReason; public Response() { // Required default Constructor } public boolean isSuccessful() { return mSuccess; } public String getReason() { return mReason; } }