
com.github.qcloudsms.SmsSingleSenderResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sms Show documentation
Show all versions of sms Show documentation
this Repository is responsible for qlcoud sms sdk
The newest version!
package com.github.qcloudsms;
/*
* 单发接口返回结果
* */
public class SmsSingleSenderResult {
/*
{
"result": 0,
"errmsg": "OK",
"ext": "",
"sid": "xxxxxxx",
"fee": 1
}
*/
public int result;
public String errMsg = "";
public String ext = "";
public String sid = "";
public int fee;
public String toString() {
return String.format(
"SmsSingleSenderResult\nresult %d\nerrMsg %s\next %s\nsid %s\nfee %d",
result, errMsg, ext, sid, fee);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy