28 lines
468 B
Go
28 lines
468 B
Go
package response
|
|
|
|
type AlibabaWdkPurchasePriceResponse struct {
|
|
|
|
/*
|
|
System request id
|
|
*/
|
|
RequestId string `json:"request_id,omitempty" `
|
|
|
|
/*
|
|
System body
|
|
*/
|
|
Body string
|
|
|
|
/*
|
|
SYSTEM ERROR
|
|
*/
|
|
ReturnMsg string `json:"return_msg,omitempty" `
|
|
/*
|
|
ERROR
|
|
*/
|
|
ReturnCode string `json:"return_code,omitempty" `
|
|
/*
|
|
true
|
|
*/
|
|
ReturnSuccess bool `json:"return_success,omitempty" `
|
|
}
|