2024-05-04 16:57:40 +08:00
|
|
|
package response
|
|
|
|
|
|
|
|
|
|
import (
|
2024-07-29 23:52:23 +08:00
|
|
|
"repository.lenntc.com/lenntc/third-platform-sdk/sdk/topsdk/defaultability/domain"
|
2024-05-04 16:57:40 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type AlibabaAlscUnionKbcpaPunishOrderGetResponse struct {
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
System request id
|
|
|
|
|
*/
|
|
|
|
|
RequestId string `json:"request_id,omitempty" `
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
System body
|
|
|
|
|
*/
|
|
|
|
|
Body string
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
反作弊订单list
|
|
|
|
|
*/
|
|
|
|
|
Result []domain.AlibabaAlscUnionKbcpaPunishOrderGetPunishOrderDetailReportDTO `json:"result,omitempty" `
|
|
|
|
|
/*
|
|
|
|
|
接口返回是否正确
|
|
|
|
|
*/
|
|
|
|
|
ResultSuccess bool `json:"result_success,omitempty" `
|
|
|
|
|
/*
|
|
|
|
|
接口错误描述
|
|
|
|
|
*/
|
|
|
|
|
BizErrorDesc string `json:"biz_error_desc,omitempty" `
|
|
|
|
|
/*
|
|
|
|
|
当前查询条件下总的记录
|
|
|
|
|
*/
|
|
|
|
|
TotalCount int64 `json:"total_count,omitempty" `
|
|
|
|
|
/*
|
|
|
|
|
接口错误码
|
|
|
|
|
*/
|
|
|
|
|
BizErrorCode string `json:"biz_error_code,omitempty" `
|
|
|
|
|
}
|