2022-01-12 09:04:14 +08:00
|
|
|
|
package common
|
|
|
|
|
|
|
|
|
|
import "gitee.ltd/lxh/txim/callback"
|
|
|
|
|
|
|
|
|
|
// ToTxMessageResponse 返回给腾讯的应答数据 - 是否允许发送当前消息
|
|
|
|
|
type ToTxMessageResponse struct {
|
2022-01-12 09:08:14 +08:00
|
|
|
|
ActionStatus string `json:"ActionStatus"` // 请求处理的结果,OK 表示处理成功,FAIL 表示失败
|
|
|
|
|
ErrorInfo string `json:"ErrorInfo"` // 错误码,0为允许发言;1为拒绝发言。若业务希望拒绝发言的同时,将错误码 ErrorCode 和 ErrorInfo 传递至客户端,请将错误码 ErrorCode 设置在 [120001, 130000] 区间内
|
|
|
|
|
ErrorCode int `json:"ErrorCode"` // 错误信息
|
|
|
|
|
MsgBody []callback.TIMMessage `json:"MsgBody,omitempty"` // 经过 App 修改之后的消息体,即时通信 IM 后台将把修改后的消息发送给接收方
|
|
|
|
|
CloudCustomData string `json:"CloudCustomData,omitempty"` // 自定义数据
|
2022-01-12 09:04:14 +08:00
|
|
|
|
}
|