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

com.antgroup.antchain.openapi.bot.models.RentContractInfo Maven / Gradle / Ivy

There is a newer version: 1.11.56
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.bot.models;

import com.aliyun.tea.*;

public class RentContractInfo extends TeaModel {
    // 租赁合同ID
    @NameInMap("contract_id")
    @Validation(required = true)
    public String contractId;

    // 租约时间 
    @NameInMap("lease_time")
    @Validation(required = true)
    public String leaseTime;

    // 入住时间
    @NameInMap("checkin_date")
    @Validation(required = true)
    public String checkinDate;

    // 退租时间
    @NameInMap("checkout_date")
    @Validation(required = true)
    public String checkoutDate;

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

    public RentContractInfo setContractId(String contractId) {
        this.contractId = contractId;
        return this;
    }
    public String getContractId() {
        return this.contractId;
    }

    public RentContractInfo setLeaseTime(String leaseTime) {
        this.leaseTime = leaseTime;
        return this;
    }
    public String getLeaseTime() {
        return this.leaseTime;
    }

    public RentContractInfo setCheckinDate(String checkinDate) {
        this.checkinDate = checkinDate;
        return this;
    }
    public String getCheckinDate() {
        return this.checkinDate;
    }

    public RentContractInfo setCheckoutDate(String checkoutDate) {
        this.checkoutDate = checkoutDate;
        return this;
    }
    public String getCheckoutDate() {
        return this.checkoutDate;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy