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

com.antgroup.antchain.openapi.twc.models.CommitmentInfo 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 CommitmentInfo extends TeaModel {
    // 租金总额
    @NameInMap("total_rent")
    @Validation(required = true)
    public String totalRent;

    // 租赁分期信息
    @NameInMap("rental_staging_information")
    @Validation(required = true)
    public java.util.List rentalStagingInformation;

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

    public CommitmentInfo setTotalRent(String totalRent) {
        this.totalRent = totalRent;
        return this;
    }
    public String getTotalRent() {
        return this.totalRent;
    }

    public CommitmentInfo setRentalStagingInformation(java.util.List rentalStagingInformation) {
        this.rentalStagingInformation = rentalStagingInformation;
        return this;
    }
    public java.util.List getRentalStagingInformation() {
        return this.rentalStagingInformation;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy