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.
57 lines
1.5 KiB
57 lines
1.5 KiB
package cms_struct
|
|
|
|
import (
|
|
"Open_IM/pkg/api_struct"
|
|
server_api_params "Open_IM/pkg/proto/sdk_ws"
|
|
)
|
|
|
|
type AdminLoginRequest struct {
|
|
AdminName string `json:"adminID" binding:"required"`
|
|
Secret string `json:"secret" binding:"required"`
|
|
OperationID string `json:"operationID" binding:"required"`
|
|
}
|
|
|
|
type AdminLoginResponse struct {
|
|
Token string `json:"token"`
|
|
UserName string `json:"userName"`
|
|
FaceURL string `json:"faceURL"`
|
|
}
|
|
|
|
type GetUserTokenRequest struct {
|
|
UserID string `json:"userID" binding:"required"`
|
|
OperationID string `json:"operationID" binding:"required"`
|
|
PlatFormID int32 `json:"platformID" binding:"required"`
|
|
}
|
|
|
|
type GetUserTokenResponse struct {
|
|
Token string `json:"token"`
|
|
ExpTime int64 `json:"expTime"`
|
|
}
|
|
|
|
type AddUserRegisterAddFriendIDListRequest struct {
|
|
OperationID string `json:"operationID" binding:"required"`
|
|
UserIDList []string `json:"userIDList" binding:"required"`
|
|
}
|
|
|
|
type AddUserRegisterAddFriendIDListResponse struct {
|
|
}
|
|
|
|
type ReduceUserRegisterAddFriendIDListRequest struct {
|
|
OperationID string `json:"operationID" binding:"required"`
|
|
UserIDList []string `json:"userIDList" binding:"required"`
|
|
Operation int32 `json:"operation"`
|
|
}
|
|
|
|
type ReduceUserRegisterAddFriendIDListResponse struct {
|
|
}
|
|
|
|
type GetUserRegisterAddFriendIDListRequest struct {
|
|
OperationID string `json:"operationID" binding:"required"`
|
|
api_struct.RequestPagination
|
|
}
|
|
|
|
type GetUserRegisterAddFriendIDListResponse struct {
|
|
Users []*server_api_params.UserInfo `json:"users"`
|
|
api_struct.ResponsePagination
|
|
}
|