com.antgroup.antchain.openapi.ak_195dff03d395462ea294bafdba69df3f.models.GetAntchainAtoTradeMerchantfulfillmentRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.ak_195dff03d395462ea294bafdba69df3f.models;
import com.aliyun.tea.*;
public class GetAntchainAtoTradeMerchantfulfillmentRequest 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;
// 履约期数,不填返回为所有履约期的履约信息
// - 如果有填写,返回当前期数的履约信息,列表长度为1
@NameInMap("term_idx")
public Long termIdx;
public static GetAntchainAtoTradeMerchantfulfillmentRequest build(java.util.Map map) throws Exception {
GetAntchainAtoTradeMerchantfulfillmentRequest self = new GetAntchainAtoTradeMerchantfulfillmentRequest();
return TeaModel.build(map, self);
}
public GetAntchainAtoTradeMerchantfulfillmentRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public GetAntchainAtoTradeMerchantfulfillmentRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public GetAntchainAtoTradeMerchantfulfillmentRequest setOrderId(String orderId) {
this.orderId = orderId;
return this;
}
public String getOrderId() {
return this.orderId;
}
public GetAntchainAtoTradeMerchantfulfillmentRequest setMerchantId(String merchantId) {
this.merchantId = merchantId;
return this;
}
public String getMerchantId() {
return this.merchantId;
}
public GetAntchainAtoTradeMerchantfulfillmentRequest setTermIdx(Long termIdx) {
this.termIdx = termIdx;
return this;
}
public Long getTermIdx() {
return this.termIdx;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy