28 lines
501 B
Go
28 lines
501 B
Go
package response
|
|
|
|
type AlibabaAxWarehouseInboundCallbackResponse struct {
|
|
|
|
/*
|
|
System request id
|
|
*/
|
|
RequestId string `json:"request_id,omitempty" `
|
|
|
|
/*
|
|
System body
|
|
*/
|
|
Body string
|
|
|
|
/*
|
|
错误编码
|
|
*/
|
|
ReturnCode string `json:"return_code,omitempty" `
|
|
/*
|
|
调用成功
|
|
*/
|
|
ReturnSuccess bool `json:"return_success,omitempty" `
|
|
/*
|
|
错误信息
|
|
*/
|
|
ReturnMessage string `json:"return_message,omitempty" `
|
|
}
|