2024-05-04 16:57:40 +08:00
|
|
|
package response
|
|
|
|
|
|
|
|
|
|
import (
|
2024-05-04 22:05:47 +08:00
|
|
|
"gitee.com/chengdu-lenntc/third-platform-sdk/sdk/topsdk/defaultability/domain"
|
2024-05-04 16:57:40 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type AlibabaAlscUnionKbcpaRefundOrderGetResponse struct {
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
System request id
|
|
|
|
|
*/
|
|
|
|
|
RequestId string `json:"request_id,omitempty" `
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
System body
|
|
|
|
|
*/
|
|
|
|
|
Body string
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
返回维权订单list
|
|
|
|
|
*/
|
|
|
|
|
Result []domain.AlibabaAlscUnionKbcpaRefundOrderGetRefundOrderDetailReportDTO `json:"result,omitempty" `
|
|
|
|
|
/*
|
|
|
|
|
错误描述
|
|
|
|
|
*/
|
|
|
|
|
BizErrorDesc string `json:"biz_error_desc,omitempty" `
|
|
|
|
|
/*
|
|
|
|
|
当前条件下订单列表总数
|
|
|
|
|
*/
|
|
|
|
|
TotalCount int64 `json:"total_count,omitempty" `
|
|
|
|
|
/*
|
|
|
|
|
错误码
|
|
|
|
|
*/
|
|
|
|
|
BizErrorCode string `json:"biz_error_code,omitempty" `
|
|
|
|
|
}
|