Created
September 5, 2018 04:57
-
-
Save prasannajeet/230ced3dfdeb1f28366bd71da47cbc3e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class RecaptchaVerifyResponse { | |
private boolean success; | |
private String challenge_ts; | |
private String apk_package_name; | |
@SerializedName("error-codes") | |
private List<String> errorCodes; | |
public boolean isSuccess() { | |
return success; | |
} | |
public String getChallenge_ts() { | |
return challenge_ts; | |
} | |
public String getApk_package_name() { | |
return apk_package_name; | |
} | |
public List<String> getErrorCodes() { | |
return errorCodes; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment