2022-02-24 14:47:21 +08:00
|
|
|
package call_back_struct
|
2022-02-28 17:57:03 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
type CallbackBeforeSendSingleMsgReq struct {
|
|
|
|
|
CommonCallbackReq
|
2022-03-03 18:49:36 +08:00
|
|
|
RecvID string `json:"recvID"`
|
2022-02-28 17:57:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type CallbackBeforeSendSingleMsgResp struct {
|
|
|
|
|
CommonCallbackResp
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type CallbackAfterSendSingleMsgReq struct {
|
|
|
|
|
CommonCallbackReq
|
2022-03-03 18:49:36 +08:00
|
|
|
RecvID string `json:"recvID"`
|
2022-02-28 17:57:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type CallbackAfterSendSingleMsgResp struct {
|
|
|
|
|
CommonCallbackResp
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type CallbackBeforeSendGroupMsgReq struct {
|
|
|
|
|
CommonCallbackReq
|
2022-03-03 18:49:36 +08:00
|
|
|
GroupID string `json:"groupID"`
|
2022-02-28 17:57:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type CallbackBeforeSendGroupMsgResp struct {
|
|
|
|
|
CommonCallbackResp
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type CallbackAfterSendGroupMsgReq struct {
|
|
|
|
|
CommonCallbackReq
|
2022-03-03 18:49:36 +08:00
|
|
|
GroupID string `json:"groupID"`
|
2022-02-28 17:57:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type CallbackAfterSendGroupMsgResp struct {
|
|
|
|
|
CommonCallbackResp
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-02 19:07:17 +08:00
|
|
|
type CallbackWordFilterReq struct {
|
2022-02-28 17:57:03 +08:00
|
|
|
CommonCallbackReq
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-02 19:07:17 +08:00
|
|
|
type CallbackWordFilterResp struct {
|
2022-02-28 17:57:03 +08:00
|
|
|
CommonCallbackResp
|
2022-03-03 14:18:28 +08:00
|
|
|
Content string `json:"content"`
|
2022-02-28 17:57:03 +08:00
|
|
|
}
|