com.antgroup.antchain.openapi.baasdt.models.QueryBlockanalysisWhitelistRequest 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 QueryBlockanalysisWhitelistRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 查询该租户的白名单信息
@NameInMap("tenant_id")
public String tenantId;
// 查询链的白名单信息
@NameInMap("chain_id")
public String chainId;
public static QueryBlockanalysisWhitelistRequest build(java.util.Map map) throws Exception {
QueryBlockanalysisWhitelistRequest self = new QueryBlockanalysisWhitelistRequest();
return TeaModel.build(map, self);
}
public QueryBlockanalysisWhitelistRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public QueryBlockanalysisWhitelistRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public QueryBlockanalysisWhitelistRequest setTenantId(String tenantId) {
this.tenantId = tenantId;
return this;
}
public String getTenantId() {
return this.tenantId;
}
public QueryBlockanalysisWhitelistRequest setChainId(String chainId) {
this.chainId = chainId;
return this;
}
public String getChainId() {
return this.chainId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy