Files
open-im-server/pkg/callbackstruct/friend.go
T

14 lines
354 B
Go
Raw Normal View History

2023-02-09 16:11:18 +08:00
package callbackstruct
2022-10-19 21:06:48 +08:00
type CallbackBeforeAddFriendReq struct {
CallbackCommand string `json:"callbackCommand"`
FromUserID string `json:"fromUserID" `
ToUserID string `json:"toUserID"`
ReqMsg string `json:"reqMsg"`
OperationID string `json:"operationID"`
}
type CallbackBeforeAddFriendResp struct {
2022-11-08 17:10:27 +08:00
*CommonCallbackResp
2022-10-19 21:06:48 +08:00
}