You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
642 B
33 lines
642 B
package callbackstruct
|
|
|
|
type CallbackUserOnlineReq struct {
|
|
UserStatusCallbackReq
|
|
Token string `json:"token"`
|
|
Seq int `json:"seq"`
|
|
IsAppBackground bool `json:"isAppBackground"`
|
|
ConnID string `json:"connID"`
|
|
}
|
|
|
|
type CallbackUserOnlineResp struct {
|
|
*CommonCallbackResp
|
|
}
|
|
|
|
type CallbackUserOfflineReq struct {
|
|
UserStatusCallbackReq
|
|
Seq int `json:"seq"`
|
|
ConnID string `json:"connID"`
|
|
}
|
|
|
|
type CallbackUserOfflineResp struct {
|
|
*CommonCallbackResp
|
|
}
|
|
|
|
type CallbackUserKickOffReq struct {
|
|
UserStatusCallbackReq
|
|
Seq int `json:"seq"`
|
|
}
|
|
|
|
type CallbackUserKickOffResp struct {
|
|
*CommonCallbackResp
|
|
}
|