com.antgroup.antchain.openapi.baasdt.models.SetCommissionMerchantRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-baasdt Show documentation
Show all versions of openapi-baasdt Show documentation
Ant Chain BAASDT SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.baasdt.models;
import com.aliyun.tea.*;
public class SetCommissionMerchantRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 收取手续费的商户对应的租户ID
@NameInMap("opt_tenant_id")
@Validation(required = true)
public String optTenantId;
// 交易幂等ID
@NameInMap("out_tx_id")
@Validation(required = true)
public String outTxId;
// 链ID
@NameInMap("chain_id")
@Validation(required = true)
public String chainId;
public static SetCommissionMerchantRequest build(java.util.Map map) throws Exception {
SetCommissionMerchantRequest self = new SetCommissionMerchantRequest();
return TeaModel.build(map, self);
}
public SetCommissionMerchantRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public SetCommissionMerchantRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public SetCommissionMerchantRequest setOptTenantId(String optTenantId) {
this.optTenantId = optTenantId;
return this;
}
public String getOptTenantId() {
return this.optTenantId;
}
public SetCommissionMerchantRequest setOutTxId(String outTxId) {
this.outTxId = outTxId;
return this;
}
public String getOutTxId() {
return this.outTxId;
}
public SetCommissionMerchantRequest setChainId(String chainId) {
this.chainId = chainId;
return this;
}
public String getChainId() {
return this.chainId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy