2023-02-09 16:11:18 +08:00
|
|
|
package callbackstruct
|
2022-10-19 21:06:48 +08:00
|
|
|
|
|
|
|
|
type CallbackBeforeAddFriendReq struct {
|
2023-02-15 15:50:52 +08:00
|
|
|
CallbackCommand `json:"callbackCommand"`
|
2022-10-19 21:06:48 +08:00
|
|
|
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
|
|
|
}
|