1
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
package domain
|
||||
|
||||
|
||||
type AlibabaWdkItemStoreskuQueryResult struct {
|
||||
/*
|
||||
success */
|
||||
Success *bool `json:"success,omitempty" `
|
||||
|
||||
/*
|
||||
errorCode */
|
||||
ErrorCode *string `json:"error_code,omitempty" `
|
||||
|
||||
/*
|
||||
errorDesc */
|
||||
ErrorDesc *string `json:"error_desc,omitempty" `
|
||||
|
||||
/*
|
||||
code */
|
||||
Code *string `json:"code,omitempty" `
|
||||
|
||||
/*
|
||||
result */
|
||||
Result *string `json:"result,omitempty" `
|
||||
|
||||
}
|
||||
|
||||
func (s *AlibabaWdkItemStoreskuQueryResult) SetSuccess(v bool) *AlibabaWdkItemStoreskuQueryResult {
|
||||
s.Success = &v
|
||||
return s
|
||||
}
|
||||
func (s *AlibabaWdkItemStoreskuQueryResult) SetErrorCode(v string) *AlibabaWdkItemStoreskuQueryResult {
|
||||
s.ErrorCode = &v
|
||||
return s
|
||||
}
|
||||
func (s *AlibabaWdkItemStoreskuQueryResult) SetErrorDesc(v string) *AlibabaWdkItemStoreskuQueryResult {
|
||||
s.ErrorDesc = &v
|
||||
return s
|
||||
}
|
||||
func (s *AlibabaWdkItemStoreskuQueryResult) SetCode(v string) *AlibabaWdkItemStoreskuQueryResult {
|
||||
s.Code = &v
|
||||
return s
|
||||
}
|
||||
func (s *AlibabaWdkItemStoreskuQueryResult) SetResult(v string) *AlibabaWdkItemStoreskuQueryResult {
|
||||
s.Result = &v
|
||||
return s
|
||||
}
|
||||
Reference in New Issue
Block a user