mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-05 03:52:15 +08:00
12 lines
296 B
Go
12 lines
296 B
Go
package callbackstruct
|
|
|
|
type CallbackAfterRevokeMsgReq struct {
|
|
CallbackCommand `json:"callbackCommand"`
|
|
ConversationID string `json:"conversationID"`
|
|
Seq int64 `json:"seq"`
|
|
UserID string `json:"userID"`
|
|
}
|
|
type CallbackAfterRevokeMsgResp struct {
|
|
CommonCallbackResp
|
|
}
|