mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
21 lines
349 B
Go
21 lines
349 B
Go
package call_back_struct
|
|
|
|
type CallbackUserOnlineReq struct {
|
|
UserStatusCallbackReq
|
|
Token string `json:"token"`
|
|
Seq int `json:"seq"`
|
|
}
|
|
|
|
type CallbackUserOnlineResp struct {
|
|
CommonCallbackResp
|
|
}
|
|
|
|
type CallbackUserOfflineReq struct {
|
|
UserStatusCallbackReq
|
|
Seq int `json:"seq"`
|
|
}
|
|
|
|
type CallbackUserOfflineResp struct {
|
|
CommonCallbackResp
|
|
}
|