goProject/.svn/pristine/e6/e6ce29ec85ceea072453a3db80d7c58e973d4d5d.svn-base
2025-01-06 16:21:36 +08:00

23 lines
669 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package qcloud
// 腾讯云平台的响应信息
// 响应信息
type QCloudResponse struct {
Result int // 0表示成功(计费依据)非0表示失败
Errmsg string // result非0时的具体错误信息
Ext string // 用户的session内容腾讯server回包中会原样返回
Sid string // 标识本次发送id标识一次短信下发记录
Fee int // 短信计费的条数
Detail []responsDetailItem // 群发短信时才有
}
type responsDetailItem struct {
Result int
Errmsg string
Mobile string
Nationcode string
Sid string
Fee int
}