com.antgroup.antchain.openapi.twc.models.BclFinishInstallment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-twc Show documentation
Show all versions of openapi-twc Show documentation
Ant Chain TWC SDK for Java
// 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;
}
}