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

14 lines
355 B
Go
Raw Normal View History

2023-01-13 18:00:18 +08:00
package callback_struct
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
}