43 lines
768 B
Go
43 lines
768 B
Go
package request
|
|
|
|
import "errors"
|
|
|
|
type SetChatroomHostUserRequest struct {
|
|
BaseRequest
|
|
ChatroomId string
|
|
UserId string
|
|
ActionType string // 1=设置 0=取消
|
|
|
|
}
|
|
|
|
// 注册用户信息签名验证
|
|
func (request *SetChatroomHostUserRequest) CheckParameter() (err error) {
|
|
|
|
if len(request.AccessToken) == 0 {
|
|
err = errors.New("AccessToken不能为空")
|
|
return
|
|
}
|
|
|
|
if len(request.ChatroomId) == 0 {
|
|
err = errors.New("ChatroomId不能为空")
|
|
return
|
|
}
|
|
|
|
if len(request.UserId) == 0 {
|
|
err = errors.New("UserId不能为空")
|
|
return
|
|
}
|
|
|
|
if len(request.ActionType) == 0 {
|
|
err = errors.New("ActionType不能为空")
|
|
return
|
|
}
|
|
|
|
if request.ActionType != "0" && request.ActionType != "1" {
|
|
err = errors.New("ActionType无效")
|
|
return
|
|
}
|
|
|
|
return
|
|
}
|