com.antgroup.antchain.openapi.riskplus.models.CountDubbridgeRepayReftrialRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-riskplus Show documentation
Show all versions of openapi-riskplus Show documentation
Ant Chain RISKPLUS SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.riskplus.models;
import com.aliyun.tea.*;
public class CountDubbridgeRepayReftrialRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 订单号
@NameInMap("order_no")
@Validation(required = true)
public String orderNo;
// 授信申请订单号
@NameInMap("original_order_no")
@Validation(required = true)
public String originalOrderNo;
// 产品编号
@NameInMap("prod_no")
public String prodNo;
// 借款金额
@NameInMap("apply_amount")
@Validation(required = true)
public Long applyAmount;
// 借款期数
@NameInMap("apply_period")
@Validation(required = true)
public Long applyPeriod;
// 还款方式1:等额本息,2:等额本金
@NameInMap("repay_type")
@Validation(required = true)
public String repayType;
// 还款日
@NameInMap("repay_date")
public String repayDate;
public static CountDubbridgeRepayReftrialRequest build(java.util.Map map) throws Exception {
CountDubbridgeRepayReftrialRequest self = new CountDubbridgeRepayReftrialRequest();
return TeaModel.build(map, self);
}
public CountDubbridgeRepayReftrialRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public CountDubbridgeRepayReftrialRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public CountDubbridgeRepayReftrialRequest setOrderNo(String orderNo) {
this.orderNo = orderNo;
return this;
}
public String getOrderNo() {
return this.orderNo;
}
public CountDubbridgeRepayReftrialRequest setOriginalOrderNo(String originalOrderNo) {
this.originalOrderNo = originalOrderNo;
return this;
}
public String getOriginalOrderNo() {
return this.originalOrderNo;
}
public CountDubbridgeRepayReftrialRequest setProdNo(String prodNo) {
this.prodNo = prodNo;
return this;
}
public String getProdNo() {
return this.prodNo;
}
public CountDubbridgeRepayReftrialRequest setApplyAmount(Long applyAmount) {
this.applyAmount = applyAmount;
return this;
}
public Long getApplyAmount() {
return this.applyAmount;
}
public CountDubbridgeRepayReftrialRequest setApplyPeriod(Long applyPeriod) {
this.applyPeriod = applyPeriod;
return this;
}
public Long getApplyPeriod() {
return this.applyPeriod;
}
public CountDubbridgeRepayReftrialRequest setRepayType(String repayType) {
this.repayType = repayType;
return this;
}
public String getRepayType() {
return this.repayType;
}
public CountDubbridgeRepayReftrialRequest setRepayDate(String repayDate) {
this.repayDate = repayDate;
return this;
}
public String getRepayDate() {
return this.repayDate;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy