26 lines
404 B
Go
26 lines
404 B
Go
package request
|
|
|
|
import "errors"
|
|
|
|
type UpdateUserVideoRequest struct {
|
|
BaseRequest
|
|
|
|
VideoKey string
|
|
}
|
|
|
|
// 注册用户信息签名验证
|
|
func (request *UpdateUserVideoRequest) CheckParameter() (err error) {
|
|
|
|
if len(request.AccessToken) == 0 {
|
|
err = errors.New("AccessToken不能为空")
|
|
return
|
|
}
|
|
|
|
if len(request.VideoKey) == 0 {
|
|
err = errors.New("VideoKey不能为空")
|
|
return
|
|
}
|
|
|
|
return
|
|
}
|