mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
14 lines
346 B
Go
14 lines
346 B
Go
package callbackstruct
|
|
|
|
type CallbackBeforeAddFriendReq struct {
|
|
CallbackCommand `json:"callbackCommand"`
|
|
FromUserID string `json:"fromUserID" `
|
|
ToUserID string `json:"toUserID"`
|
|
ReqMsg string `json:"reqMsg"`
|
|
OperationID string `json:"operationID"`
|
|
}
|
|
|
|
type CallbackBeforeAddFriendResp struct {
|
|
CommonCallbackResp
|
|
}
|