You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Open-IM-Server/pkg/call_back_struct/message.go

47 lines
845 B

3 years ago
package call_back_struct
3 years ago
type CallbackBeforeSendSingleMsgReq struct {
CommonCallbackReq
3 years ago
RecvID string `json:"recvID"`
3 years ago
}
type CallbackBeforeSendSingleMsgResp struct {
3 years ago
*CommonCallbackResp
3 years ago
}
type CallbackAfterSendSingleMsgReq struct {
CommonCallbackReq
3 years ago
RecvID string `json:"recvID"`
3 years ago
}
type CallbackAfterSendSingleMsgResp struct {
3 years ago
*CommonCallbackResp
3 years ago
}
type CallbackBeforeSendGroupMsgReq struct {
CommonCallbackReq
3 years ago
GroupID string `json:"groupID"`
3 years ago
}
type CallbackBeforeSendGroupMsgResp struct {
3 years ago
*CommonCallbackResp
3 years ago
}
type CallbackAfterSendGroupMsgReq struct {
CommonCallbackReq
3 years ago
GroupID string `json:"groupID"`
3 years ago
}
type CallbackAfterSendGroupMsgResp struct {
3 years ago
*CommonCallbackResp
3 years ago
}
3 years ago
type CallbackWordFilterReq struct {
3 years ago
CommonCallbackReq
}
3 years ago
type CallbackWordFilterResp struct {
3 years ago
*CommonCallbackResp
3 years ago
Content string `json:"content"`
3 years ago
}