🎨 优化返回结构体、补充注释
This commit is contained in:
parent
cbc07e4ec5
commit
28dee5fee8
@ -4,8 +4,9 @@ import "gitee.ltd/lxh/txim/callback"
|
|||||||
|
|
||||||
// ToTxMessageResponse 返回给腾讯的应答数据 - 是否允许发送当前消息
|
// ToTxMessageResponse 返回给腾讯的应答数据 - 是否允许发送当前消息
|
||||||
type ToTxMessageResponse struct {
|
type ToTxMessageResponse struct {
|
||||||
ActionStatus string `json:"ActionStatus"`
|
ActionStatus string `json:"ActionStatus"` // 请求处理的结果,OK 表示处理成功,FAIL 表示失败
|
||||||
ErrorInfo string `json:"ErrorInfo"`
|
ErrorInfo string `json:"ErrorInfo"` // 错误码,0为允许发言;1为拒绝发言。若业务希望拒绝发言的同时,将错误码 ErrorCode 和 ErrorInfo 传递至客户端,请将错误码 ErrorCode 设置在 [120001, 130000] 区间内
|
||||||
ErrorCode int `json:"ErrorCode"`
|
ErrorCode int `json:"ErrorCode"` // 错误信息
|
||||||
MsgBody []callback.TIMMessage `json:"MsgBody,omitempty"`
|
MsgBody []callback.TIMMessage `json:"MsgBody,omitempty"` // 经过 App 修改之后的消息体,即时通信 IM 后台将把修改后的消息发送给接收方
|
||||||
|
CloudCustomData string `json:"CloudCustomData,omitempty"` // 自定义数据
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user