Files
open-im-server/pkg/call_back_struct/push.go
T

20 lines
482 B
Go
Raw Normal View History

2022-05-26 18:02:00 +08:00
package call_back_struct
import commonPb "Open_IM/pkg/proto/sdk_ws"
type CallbackOfflinePushReq struct {
UserStatusCallbackReq
*commonPb.OfflinePushInfo
2022-05-27 19:33:47 +08:00
CommonCallbackReq
SendID string `json:"sendID"`
GroupID string `json:"groupID"`
ContentType int32 `json:"contentType"`
SessionType int32 `json:"sessionType"`
AtUserIDList []string `json:"atUserIDList"`
Content string `json`
2022-05-26 18:02:00 +08:00
}
type CallbackOfflinePushResp struct {
2022-05-27 10:26:44 +08:00
*CommonCallbackResp
2022-05-26 18:02:00 +08:00
}