com.github.qcloudsms.SmsVoiceVerifyCodeSenderResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qcloudsms Show documentation
Show all versions of qcloudsms Show documentation
this Repository is responsible for qlcoud sms sdk
package com.github.qcloudsms;
import com.github.qcloudsms.httpclient.HTTPResponse;
import org.json.JSONObject;
import org.json.JSONException;
public class SmsVoiceVerifyCodeSenderResult extends SmsResultBase {
public int result;
public String errMsg;
public String ext;
public String callid;
public SmsVoiceVerifyCodeSenderResult() {
this.errMsg = "";
this.ext = "";
this.callid = "";
}
@Override
public SmsVoiceVerifyCodeSenderResult parseFromHTTPResponse(HTTPResponse response)
throws JSONException {
JSONObject json = parseToJson(response);
result = json.getInt("result");
errMsg = json.getString("errmsg");
if (json.has("ext")) {
ext = json.getString("ext");
}
if (json.has("callid")) {
callid = json.getString("callid");
}
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy