com.github.qcloudsms.SmsVoiceUploaderResult 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 SmsVoiceUploaderResult {
/*
{
"result": 0, // 0 表示成功,非 0 表示失败
"msg": "xxx", // result 非 0 时的具体错误信息
"file":"aaaaaaa" // result 为 0 时,存储的文件名
}
*/
public int result;
public String msg;
public String file;
public String toString() {
if (0 == result) {
return String.format(
"SmsVoiceUploaderResult:result %d\nmsg %s\nfile %s", result, msg, file);
} else {
return String.format("SmsVoiceUploaderResult:result %d\nmsg %s", result, msg);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy