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

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

There is a newer version: 0.9.2
Show newest version
package com.github.qcloudsms;

public class SmsVoicePromptSenderResult {

	/*
	{
	    "result": 0, //0表示成功,非0表示失败
	    "errmsg": "", //result非0时的具体错误信息
	    "ext": "some msg", //可选字段,用户的session内容,腾讯server回包中会原样返回
	    "callid": "xxxx" //标识本次发送id
	}

	*/
	public int result;
	public String errmsg;
	public String ext = "";
	public String callid;

	public String toString() {
		if (0 == result) {
			return String.format(
					"SmsVoicePromptSenderResult\nresult %d\nerrmsg %s\next %s\ncallid %s",
					result, errmsg, ext, callid);
		} else {
			return String.format(
					"SmsVoicePromptSenderResult\nresult %d\nerrmsg %s\next %s",
					result, errmsg, ext);
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy