mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
50 lines
928 B
Go
50 lines
928 B
Go
package call_back_struct
|
|
|
|
|
|
type CallbackBeforeSendSingleMsgReq struct {
|
|
CommonCallbackReq
|
|
RecvID string `json:"recvID"`
|
|
}
|
|
|
|
type CallbackBeforeSendSingleMsgResp struct {
|
|
CommonCallbackResp
|
|
}
|
|
|
|
type CallbackAfterSendSingleMsgReq struct {
|
|
CommonCallbackReq
|
|
RecvID string `json:"recvID"`
|
|
}
|
|
|
|
type CallbackAfterSendSingleMsgResp struct {
|
|
CommonCallbackResp
|
|
}
|
|
|
|
type CallbackBeforeSendGroupMsgReq struct {
|
|
CommonCallbackReq
|
|
GroupID string `json:"groupID"`
|
|
}
|
|
|
|
type CallbackBeforeSendGroupMsgResp struct {
|
|
CommonCallbackResp
|
|
}
|
|
|
|
type CallbackAfterSendGroupMsgReq struct {
|
|
CommonCallbackReq
|
|
GroupID string `json:"groupID"`
|
|
}
|
|
|
|
type CallbackAfterSendGroupMsgResp struct {
|
|
CommonCallbackResp
|
|
}
|
|
|
|
type CallbackWordFilterReq struct {
|
|
CommonCallbackReq
|
|
RecvID string `json:"recvID,omitempty"`
|
|
GroupID string `json:"groupID,omitempty"`
|
|
}
|
|
|
|
type CallbackWordFilterResp struct {
|
|
CommonCallbackResp
|
|
Content string `json:"content"`
|
|
}
|