mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-04 11:22:17 +08:00
13 lines
339 B
Go
13 lines
339 B
Go
package callbackstruct
|
|
|
|
type CallbackAfterRevokeMsgReq struct {
|
|
CallbackCommand `json:"callbackCommand"`
|
|
ConversationID string `json:"conversationID"`
|
|
Seq int64 `json:"seq"`
|
|
UserID string `json:"userID"`
|
|
EventTime int64 `json:"eventTime"`
|
|
}
|
|
type CallbackAfterRevokeMsgResp struct {
|
|
CommonCallbackResp
|
|
}
|