com.antgroup.antchain.openapi.ato.models.GetFundMerchantperformanceRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-ato Show documentation
Show all versions of openapi-ato Show documentation
Ant Chain ATO SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.ato.models;
import com.aliyun.tea.*;
public class GetFundMerchantperformanceRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 订单id
@NameInMap("order_id")
@Validation(required = true, maxLength = 50, minLength = 1)
public String orderId;
// 订单所属商户的社会信用代码
@NameInMap("merchant_id")
@Validation(required = true, maxLength = 64, minLength = 1)
public String merchantId;
// 订单所属融资方的社会信用代码
@NameInMap("fund_id")
@Validation(required = true, maxLength = 64, minLength = 1)
public String fundId;
public static GetFundMerchantperformanceRequest build(java.util.Map map) throws Exception {
GetFundMerchantperformanceRequest self = new GetFundMerchantperformanceRequest();
return TeaModel.build(map, self);
}
public GetFundMerchantperformanceRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public GetFundMerchantperformanceRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public GetFundMerchantperformanceRequest setOrderId(String orderId) {
this.orderId = orderId;
return this;
}
public String getOrderId() {
return this.orderId;
}
public GetFundMerchantperformanceRequest setMerchantId(String merchantId) {
this.merchantId = merchantId;
return this;
}
public String getMerchantId() {
return this.merchantId;
}
public GetFundMerchantperformanceRequest setFundId(String fundId) {
this.fundId = fundId;
return this;
}
public String getFundId() {
return this.fundId;
}
}