com.antgroup.antchain.openapi.ak_195dff03d395462ea294bafdba69df3f.models.NotifyAntchainAtoFundFlowRequest 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 NotifyAntchainAtoFundFlowRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 订单所属商户的统一社会信用代码
@NameInMap("merchant_id")
@Validation(required = true)
public String merchantId;
// 商户的订单号
@NameInMap("order_id")
@Validation(required = true)
public String orderId;
// 签署合同单号
@NameInMap("sign_no")
@Validation(required = true)
public String signNo;
// 返回的文件fileItemNo编号
@NameInMap("file_item_no")
@Validation(required = true)
public String fileItemNo;
// 资方统一社会信用代码
@NameInMap("fund_id")
public String fundId;
public static NotifyAntchainAtoFundFlowRequest build(java.util.Map map) throws Exception {
NotifyAntchainAtoFundFlowRequest self = new NotifyAntchainAtoFundFlowRequest();
return TeaModel.build(map, self);
}
public NotifyAntchainAtoFundFlowRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public NotifyAntchainAtoFundFlowRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public NotifyAntchainAtoFundFlowRequest setMerchantId(String merchantId) {
this.merchantId = merchantId;
return this;
}
public String getMerchantId() {
return this.merchantId;
}
public NotifyAntchainAtoFundFlowRequest setOrderId(String orderId) {
this.orderId = orderId;
return this;
}
public String getOrderId() {
return this.orderId;
}
public NotifyAntchainAtoFundFlowRequest setSignNo(String signNo) {
this.signNo = signNo;
return this;
}
public String getSignNo() {
return this.signNo;
}
public NotifyAntchainAtoFundFlowRequest setFileItemNo(String fileItemNo) {
this.fileItemNo = fileItemNo;
return this;
}
public String getFileItemNo() {
return this.fileItemNo;
}
public NotifyAntchainAtoFundFlowRequest setFundId(String fundId) {
this.fundId = fundId;
return this;
}
public String getFundId() {
return this.fundId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy