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

com.antgroup.antchain.openapi.twc.models.FinanceCertifyRentalInfo 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 FinanceCertifyRentalInfo extends TeaModel {
    // 租期
    @NameInMap("rent_term")
    @Validation(required = true)
    public Long rentTerm;

    // 本期扣款金额,123400表示12.34元
    @NameInMap("rental_money")
    @Validation(required = true)
    public Long rentalMoney;

    // 还款日期,格式为"2019-07-31 12:00:00"
    @NameInMap("rental_return_time")
    @Validation(required = true)
    public String rentalReturnTime;

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

    public FinanceCertifyRentalInfo setRentTerm(Long rentTerm) {
        this.rentTerm = rentTerm;
        return this;
    }
    public Long getRentTerm() {
        return this.rentTerm;
    }

    public FinanceCertifyRentalInfo setRentalMoney(Long rentalMoney) {
        this.rentalMoney = rentalMoney;
        return this;
    }
    public Long getRentalMoney() {
        return this.rentalMoney;
    }

    public FinanceCertifyRentalInfo setRentalReturnTime(String rentalReturnTime) {
        this.rentalReturnTime = rentalReturnTime;
        return this;
    }
    public String getRentalReturnTime() {
        return this.rentalReturnTime;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy