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

39 lines
1016 B
Go

package domain
type AlibabaWdkItemMerchantstoreskuUpdateResult struct {
/*
success */
Success *bool `json:"success,omitempty" `
/*
code */
Code *string `json:"code,omitempty" `
/*
errorCode */
ErrorCode *string `json:"error_code,omitempty" `
/*
errorDesc */
ErrorDesc *string `json:"error_desc,omitempty" `
}
func (s *AlibabaWdkItemMerchantstoreskuUpdateResult) SetSuccess(v bool) *AlibabaWdkItemMerchantstoreskuUpdateResult {
s.Success = &v
return s
}
func (s *AlibabaWdkItemMerchantstoreskuUpdateResult) SetCode(v string) *AlibabaWdkItemMerchantstoreskuUpdateResult {
s.Code = &v
return s
}
func (s *AlibabaWdkItemMerchantstoreskuUpdateResult) SetErrorCode(v string) *AlibabaWdkItemMerchantstoreskuUpdateResult {
s.ErrorCode = &v
return s
}
func (s *AlibabaWdkItemMerchantstoreskuUpdateResult) SetErrorDesc(v string) *AlibabaWdkItemMerchantstoreskuUpdateResult {
s.ErrorDesc = &v
return s
}