28 lines
457 B
Go
28 lines
457 B
Go
package response
|
|
|
|
type AlibabaWdkMerchantStoreitemCreateResponse struct {
|
|
|
|
/*
|
|
System request id
|
|
*/
|
|
RequestId string `json:"request_id,omitempty" `
|
|
|
|
/*
|
|
System body
|
|
*/
|
|
Body string
|
|
|
|
/*
|
|
success
|
|
*/
|
|
Suc bool `json:"suc,omitempty" `
|
|
/*
|
|
errorCode
|
|
*/
|
|
Errorcode string `json:"errorcode,omitempty" `
|
|
/*
|
|
errorDesc
|
|
*/
|
|
Errordesc string `json:"errordesc,omitempty" `
|
|
}
|