32 lines
534 B
Go
32 lines
534 B
Go
package request
|
|
|
|
import "errors"
|
|
|
|
type ReplyTimelineRequest struct {
|
|
BaseRequest
|
|
TimelineId string
|
|
ToReplyId string
|
|
ReplyContent string
|
|
}
|
|
|
|
// 参数合法性检验
|
|
func (request *ReplyTimelineRequest) CheckParameter() (err error) {
|
|
|
|
if len(request.AccessToken) == 0 {
|
|
err = errors.New("AccessToken不能为空")
|
|
return
|
|
}
|
|
|
|
if len(request.TimelineId) == 0 {
|
|
err = errors.New("TimelineId不能为空")
|
|
return
|
|
}
|
|
|
|
if len(request.ReplyContent) == 0 {
|
|
err = errors.New("ReplyText不能为空")
|
|
return
|
|
}
|
|
|
|
return
|
|
}
|