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

14 lines
353 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 {
2023-02-14 19:28:57 +08:00
CommonCallbackResp
2022-10-19 21:06:48 +08:00
}