forked from php-danfu.shenzhenbenwo.com

lefengyang
2025-09-10 9753a88eceb52a0f2e3084cf72f3474d2d7d7f1b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// This file is auto-generated, don't edit it. Thanks.
package com.alipay.easysdk.payment.common.models;
 
import com.aliyun.tea.*;
 
public class TradeSettleInfo extends TeaModel {
    @NameInMap("trade_settle_detail_list")
    @Validation(required = true)
    public java.util.List<TradeSettleDetail> tradeSettleDetailList;
 
    public static TradeSettleInfo build(java.util.Map<String, ?> map) throws Exception {
        TradeSettleInfo self = new TradeSettleInfo();
        return TeaModel.build(map, self);
    }
 
}