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