Back to project page android_sdk.
The source code is released under:
GNU Lesser General Public License
If you think the Android project 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.
/* * Copyright (C) 2013 Spunk Media Pvt Ltd (www.qubecell.com) *//*from w ww . j a va2 s . c om*/ package com.qubecell.beans; /** * The SendOTPRespBean class is used to receive sendOTP command response. * @author Eninov * */ public class SendOTPRespBean extends ResponseBaseBean { private String message; private String requestid; private String txnid; private String key; public String getMessage() { return message; } public void setMessage(String message) { this.message = message; } public String getRequestid() { return requestid; } public void setRequestid(String requestid) { this.requestid = requestid; } public String getTxnid() { return txnid; } public void setTxnid(String txnid) { this.txnid = txnid; } public String getKey() { return key; } public void setKey(String key) { this.key = key; } }