Files
open-im-server/pkg/callbackstruct/revoke.go
T

12 lines
296 B
Go
Raw Normal View History

2023-11-30 10:10:48 +08:00
package callbackstruct
type CallbackAfterRevokeMsgReq struct {
CallbackCommand `json:"callbackCommand"`
ConversationID string `json:"conversationID"`
Seq int64 `json:"seq"`
UserID string `json:"userID"`
}
type CallbackAfterRevokeMsgResp struct {
CommonCallbackResp
}