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
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