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

com.antgroup.antchain.openapi.twc.models.BclFinishInstallment 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 BclFinishInstallment extends TeaModel {
    // 期次号
    @NameInMap("term_no")
    @Validation(required = true)
    public Long termNo;

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

    public BclFinishInstallment setTermNo(Long termNo) {
        this.termNo = termNo;
        return this;
    }
    public Long getTermNo() {
        return this.termNo;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy