com.antgroup.antchain.openapi.twc.models.LeasePromiseInfo 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 LeasePromiseInfo extends TeaModel {
// 租期index
@NameInMap("term")
@Validation(required = true)
public Long term;
// 应还款金额
@NameInMap("pay_money")
@Validation(required = true)
public Long payMoney;
// 应还款时间
@NameInMap("pay_date")
@Validation(required = true)
public String payDate;
public static LeasePromiseInfo build(java.util.Map map) throws Exception {
LeasePromiseInfo self = new LeasePromiseInfo();
return TeaModel.build(map, self);
}
public LeasePromiseInfo setTerm(Long term) {
this.term = term;
return this;
}
public Long getTerm() {
return this.term;
}
public LeasePromiseInfo setPayMoney(Long payMoney) {
this.payMoney = payMoney;
return this;
}
public Long getPayMoney() {
return this.payMoney;
}
public LeasePromiseInfo setPayDate(String payDate) {
this.payDate = payDate;
return this;
}
public String getPayDate() {
return this.payDate;
}
}