mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-25 11:06:43 +08:00
14 lines
355 B
Go
14 lines
355 B
Go
package callback_struct
|
|
|
|
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 {
|
|
*CommonCallbackResp
|
|
}
|