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

com.antgroup.antchain.openapi.twc.models.RentalInstallmentPerformance 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 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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy