com.antgroup.antchain.openapi.twc.models.RentalInstallmentPerformance 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 RentalInstallmentPerformance extends TeaModel {
// 被申请人还款期数
@NameInMap("repayment_period")
@Validation(required = true)
public Long repaymentPeriod;
// 被申请人第几期租金支付方式
@NameInMap("rent_payment_type")
@Validation(required = true)
public String rentPaymentType;
// 被申请人第几期还款时间
@NameInMap("applied_repayment_time")
@Validation(required = true)
public String appliedRepaymentTime;
// 被申请人第几期还款金额
@NameInMap("applied_repayment_amount")
@Validation(required = true)
public String appliedRepaymentAmount;
public static RentalInstallmentPerformance build(java.util.Map map) throws Exception {
RentalInstallmentPerformance self = new RentalInstallmentPerformance();
return TeaModel.build(map, self);
}
public RentalInstallmentPerformance setRepaymentPeriod(Long repaymentPeriod) {
this.repaymentPeriod = repaymentPeriod;
return this;
}
public Long getRepaymentPeriod() {
return this.repaymentPeriod;
}
public RentalInstallmentPerformance setRentPaymentType(String rentPaymentType) {
this.rentPaymentType = rentPaymentType;
return this;
}
public String getRentPaymentType() {
return this.rentPaymentType;
}
public RentalInstallmentPerformance setAppliedRepaymentTime(String appliedRepaymentTime) {
this.appliedRepaymentTime = appliedRepaymentTime;
return this;
}
public String getAppliedRepaymentTime() {
return this.appliedRepaymentTime;
}
public RentalInstallmentPerformance setAppliedRepaymentAmount(String appliedRepaymentAmount) {
this.appliedRepaymentAmount = appliedRepaymentAmount;
return this;
}
public String getAppliedRepaymentAmount() {
return this.appliedRepaymentAmount;
}
}