26 lines
515 B
Go
26 lines
515 B
Go
package request
|
||
|
||
import "errors"
|
||
|
||
type GetChatroomActivityRequest struct {
|
||
BaseRequest
|
||
ChatroomId string
|
||
ViewPosition string // 房间右侧:ROOM_RIGHT 普通礼物栏:GIFT_NORMAL 礼物背包:GIFT_BAG
|
||
}
|
||
|
||
// 参数合法性检验
|
||
func (request *GetChatroomActivityRequest) CheckParameter() (err error) {
|
||
|
||
if len(request.AccessToken) == 0 {
|
||
err = errors.New("AccessToken不能为空")
|
||
return
|
||
}
|
||
|
||
if len(request.ChatroomId) == 0 {
|
||
err = errors.New("ChatroomId不能为空")
|
||
return
|
||
}
|
||
|
||
return
|
||
}
|