mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
25 lines
509 B
Go
25 lines
509 B
Go
package base_info
|
|
|
|
import (
|
|
open_im_sdk "Open_IM/pkg/proto/sdk_ws"
|
|
)
|
|
|
|
type GetUserInfoReq struct {
|
|
OperationID string `json:"operationID" binding:"required"`
|
|
UserIDList []string `json:"userIDList" binding:"required"`
|
|
}
|
|
type GetUserInfoResp struct {
|
|
CommResp
|
|
UserInfoList []*open_im_sdk.UserInfo
|
|
Data []map[string]interface{} `json:"data"`
|
|
}
|
|
|
|
type UpdateUserInfoReq struct {
|
|
UserInfo
|
|
OperationID string `json:"operationID" binding:"required"`
|
|
}
|
|
|
|
type UpdateUserInfoResp struct {
|
|
CommResp
|
|
}
|