24 lines
390 B
Go
24 lines
390 B
Go
package response
|
|
|
|
import (
|
|
"git.rosy.net.cn/baseapi/platformapi/tao_vegetable/sdk/ability3156/domain"
|
|
)
|
|
|
|
type AlibabaWdkAxStoreQueryResponse struct {
|
|
|
|
/*
|
|
System request id
|
|
*/
|
|
RequestId string `json:"request_id,omitempty" `
|
|
|
|
/*
|
|
System body
|
|
*/
|
|
Body string
|
|
|
|
/*
|
|
查询接口返回结果
|
|
*/
|
|
ApiResult domain.AlibabaWdkAxStoreQueryApiResult `json:"api_result,omitempty" `
|
|
}
|