forked from php-danfu.shenzhenbenwo.com

lefengyang
2025-09-10 3c9dcaf742cfa3e3c2b0843c8752cf7713aaf1fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
// This file is auto-generated, don't edit it. Thanks.
package com.alipay.easysdk.payment.common.models;
 
import com.aliyun.tea.*;
 
public class AlipayTradeRefundResponse extends TeaModel {
    @NameInMap("http_body")
    @Validation(required = true)
    public String httpBody;
 
    @NameInMap("code")
    @Validation(required = true)
    public String code;
 
    @NameInMap("msg")
    @Validation(required = true)
    public String msg;
 
    @NameInMap("sub_code")
    @Validation(required = true)
    public String subCode;
 
    @NameInMap("sub_msg")
    @Validation(required = true)
    public String subMsg;
 
    @NameInMap("trade_no")
    @Validation(required = true)
    public String tradeNo;
 
    @NameInMap("out_trade_no")
    @Validation(required = true)
    public String outTradeNo;
 
    @NameInMap("buyer_logon_id")
    @Validation(required = true)
    public String buyerLogonId;
 
    @NameInMap("fund_change")
    @Validation(required = true)
    public String fundChange;
 
    @NameInMap("refund_fee")
    @Validation(required = true)
    public String refundFee;
 
    @NameInMap("refund_currency")
    @Validation(required = true)
    public String refundCurrency;
 
    @NameInMap("gmt_refund_pay")
    @Validation(required = true)
    public String gmtRefundPay;
 
    @NameInMap("refund_detail_item_list")
    @Validation(required = true)
    public java.util.List<TradeFundBill> refundDetailItemList;
 
    @NameInMap("store_name")
    @Validation(required = true)
    public String storeName;
 
    @NameInMap("buyer_user_id")
    @Validation(required = true)
    public String buyerUserId;
 
    @NameInMap("refund_preset_paytool_list")
    @Validation(required = true)
    public java.util.List<PresetPayToolInfo> refundPresetPaytoolList;
 
    @NameInMap("refund_settlement_id")
    @Validation(required = true)
    public String refundSettlementId;
 
    @NameInMap("present_refund_buyer_amount")
    @Validation(required = true)
    public String presentRefundBuyerAmount;
 
    @NameInMap("present_refund_discount_amount")
    @Validation(required = true)
    public String presentRefundDiscountAmount;
 
    @NameInMap("present_refund_mdiscount_amount")
    @Validation(required = true)
    public String presentRefundMdiscountAmount;
 
    public static AlipayTradeRefundResponse build(java.util.Map<String, ?> map) throws Exception {
        AlipayTradeRefundResponse self = new AlipayTradeRefundResponse();
        return TeaModel.build(map, self);
    }
 
}