All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.antgroup.antchain.openapi.twc.models.RepaymentOrderRequest Maven / Gradle / Ivy

There is a newer version: 1.12.23
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.twc.models;

import com.aliyun.tea.*;

public class RepaymentOrderRequest extends TeaModel {
    // 代扣触发时间,精确到毫秒
    // java.lang.System#currentTimeMillis()
    @NameInMap("pay_date")
    @Validation(required = true)
    public Long payDate;

    // 代扣金额,整数 精确到分
    @NameInMap("pay_money")
    @Validation(required = true)
    public Long payMoney;

    // 是否用户签署成功后立即触发第一期代扣
    @NameInMap("trigger_immediately")
    public Long triggerImmediately;

    public static RepaymentOrderRequest build(java.util.Map map) throws Exception {
        RepaymentOrderRequest self = new RepaymentOrderRequest();
        return TeaModel.build(map, self);
    }

    public RepaymentOrderRequest setPayDate(Long payDate) {
        this.payDate = payDate;
        return this;
    }
    public Long getPayDate() {
        return this.payDate;
    }

    public RepaymentOrderRequest setPayMoney(Long payMoney) {
        this.payMoney = payMoney;
        return this;
    }
    public Long getPayMoney() {
        return this.payMoney;
    }

    public RepaymentOrderRequest setTriggerImmediately(Long triggerImmediately) {
        this.triggerImmediately = triggerImmediately;
        return this;
    }
    public Long getTriggerImmediately() {
        return this.triggerImmediately;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy