We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ed6906 commit 3f6cf11Copy full SHA for 3f6cf11
syncmsg/message.go
@@ -2,11 +2,12 @@ package syncmsg
2
3
// BaseMessage 接收消息
4
type BaseMessage struct {
5
- MsgID string `json:"msgid"` // 消息ID
6
- OpenKFID string `json:"open_kfid"` // 客服帐号ID
7
- ExternalUserID string `json:"external_userid"` // 客户UserID
8
- SendTime uint64 `json:"send_time"` // 消息发送时间
9
- Origin uint32 `json:"origin"` // 消息来源。3-客户回复的消息 4-系统推送的消息
+ MsgID string `json:"msgid"` // 消息ID
+ OpenKFID string `json:"open_kfid"` // 客服帐号ID
+ ExternalUserID string `json:"external_userid"` // 客户UserID
+ ReceptionistUserID string `json:"servicer_userid"` // 接待客服userID
+ SendTime uint64 `json:"send_time"` // 消息发送时间
10
+ Origin uint32 `json:"origin"` // 消息来源。3-客户回复的消息 4-系统推送的消息 5-客服回复消息
11
}
12
13
// Text 文本消息
0 commit comments