txim/common/response.go

12 lines
408 B
Go

package common
import "gitee.ltd/lxh/txim/callback"
// ToTxMessageResponse 返回给腾讯的应答数据 - 是否允许发送当前消息
type ToTxMessageResponse struct {
ActionStatus string `json:"ActionStatus"`
ErrorInfo string `json:"ErrorInfo"`
ErrorCode int `json:"ErrorCode"`
MsgBody []callback.TIMMessage `json:"MsgBody,omitempty"`
}