2022-10-19 21:06:48 +08:00
|
|
|
package call_back_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 {
|
2022-11-08 17:10:27 +08:00
|
|
|
*CommonCallbackResp
|
2022-10-19 21:06:48 +08:00
|
|
|
}
|