All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.qcloudsms.SmsVoiceUploaderResult Maven / Gradle / Ivy

The newest version!
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