Files
baseapi/platformapi/tao_vegetable/sdk/ability591/domain/AlibabaWdkChannelCommentCreateApiResult.go
邹宗楠 65976332fc 1
2023-06-15 09:08:54 +08:00

23 lines
533 B
Go

package domain
type AlibabaWdkChannelCommentCreateApiResult struct {
/*
是否成功 */
Success *bool `json:"success,omitempty" `
/*
错误信息 */
ErrMsg *string `json:"err_msg,omitempty" `
}
func (s *AlibabaWdkChannelCommentCreateApiResult) SetSuccess(v bool) *AlibabaWdkChannelCommentCreateApiResult {
s.Success = &v
return s
}
func (s *AlibabaWdkChannelCommentCreateApiResult) SetErrMsg(v string) *AlibabaWdkChannelCommentCreateApiResult {
s.ErrMsg = &v
return s
}