txim/callback/param.go

15 lines
895 B
Go

package callback
import "gitee.ltd/lxh/txim/common"
// TencentCallbackQuery 腾讯云回调Query参数
type TencentCallbackQuery struct {
CallbackCommand common.TxIMCallbackCommand `json:"CallbackCommand" form:"CallbackCommand"` // 回调命令字
ClientIP string `json:"ClientIP" form:"ClientIP"` // 客户端IP
OptPlatform string `json:"OptPlatform" form:"OptPlatform"` // 客户端平台
RequestId string `json:"RequestId" form:"RequestId"` // 请求ID
RetryId int `json:"RetryId" form:"RetryId"` // 重试次数
SdkAppid string `json:"SdkAppid" form:"SdkAppid"` // 应用ID
ContentType string `json:"contenttype" form:"contenttype"` // 内容类型
}