Open-IM-Server/pkg/call_back_struct/push.go

20 lines
482 B

3 years ago
package call_back_struct
import commonPb "Open_IM/pkg/proto/sdk_ws"
type CallbackOfflinePushReq struct {
UserStatusCallbackReq
*commonPb.OfflinePushInfo
3 years ago
CommonCallbackReq
SendID string `json:"sendID"`
GroupID string `json:"groupID"`
ContentType int32 `json:"contentType"`
SessionType int32 `json:"sessionType"`
AtUserIDList []string `json:"atUserIDList"`
Content string `json`
3 years ago
}
type CallbackOfflinePushResp struct {
3 years ago
*CommonCallbackResp
3 years ago
}