Files
open-im-server/pkg/base_info/manage_api_struct.go
T

45 lines
1.2 KiB
Go
Raw Normal View History

2021-12-28 15:33:47 +08:00
package base_info
2021-12-28 20:44:19 +08:00
import (
pbRelay "Open_IM/pkg/proto/relay"
2022-02-24 18:08:53 +08:00
"Open_IM/pkg/proto/sdk_ws"
2021-12-28 20:44:19 +08:00
pbUser "Open_IM/pkg/proto/user"
)
2021-12-28 15:33:47 +08:00
2021-12-28 20:44:19 +08:00
type DeleteUsersReq struct {
2021-12-29 21:55:07 +08:00
OperationID string `json:"operationID" binding:"required"`
DeleteUserIDList []string `json:"deleteUserIDList" binding:"required"`
2021-12-28 15:33:47 +08:00
}
2021-12-28 20:44:19 +08:00
type DeleteUsersResp struct {
CommResp
FailedUserIDList []string `json:"data"`
}
type GetAllUsersUidReq struct {
2021-12-28 15:33:47 +08:00
OperationID string `json:"operationID" binding:"required"`
}
2021-12-28 20:44:19 +08:00
type GetAllUsersUidResp struct {
CommResp
UserIDList []string `json:"data"`
}
type GetUsersOnlineStatusReq struct {
2021-12-28 15:33:47 +08:00
OperationID string `json:"operationID" binding:"required"`
UserIDList []string `json:"userIDList" binding:"required,lte=200"`
}
2021-12-28 20:44:19 +08:00
type GetUsersOnlineStatusResp struct {
CommResp
SuccessResult []*pbRelay.GetUsersOnlineStatusResp_SuccessResult `json:"data"`
}
type AccountCheckReq struct {
2021-12-29 19:35:04 +08:00
OperationID string `json:"operationID" binding:"required"`
CheckUserIDList []string `json:"checkUserIDList" binding:"required,lte=100"`
2021-12-28 15:33:47 +08:00
}
2021-12-28 20:44:19 +08:00
type AccountCheckResp struct {
CommResp
ResultList []*pbUser.AccountCheckResp_SingleUserStatus `json:"data"`
}
2022-02-24 18:08:53 +08:00
type ManagementSendMsgResp struct {
CommResp
ResultList server_api_params.UserSendMsgResp `json:"data"`
}