com.antgroup.antchain.openapi.ak_195dff03d395462ea294bafdba69df3f.models.GetAntchainAtoFundFlowRequest 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 GetAntchainAtoFundFlowRequest 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("contract_type")
public String contractType;
public static GetAntchainAtoFundFlowRequest build(java.util.Map map) throws Exception {
GetAntchainAtoFundFlowRequest self = new GetAntchainAtoFundFlowRequest();
return TeaModel.build(map, self);
}
public GetAntchainAtoFundFlowRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public GetAntchainAtoFundFlowRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public GetAntchainAtoFundFlowRequest setMerchantId(String merchantId) {
this.merchantId = merchantId;
return this;
}
public String getMerchantId() {
return this.merchantId;
}
public GetAntchainAtoFundFlowRequest setOrderId(String orderId) {
this.orderId = orderId;
return this;
}
public String getOrderId() {
return this.orderId;
}
public GetAntchainAtoFundFlowRequest setContractType(String contractType) {
this.contractType = contractType;
return this;
}
public String getContractType() {
return this.contractType;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy