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

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

There is a newer version: 0.9.2
Show 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