com.antgroup.antchain.openapi.baasdt.models.QueryBlockanalysisTransactionRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.baasdt.models;
import com.aliyun.tea.*;
public class QueryBlockanalysisTransactionRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 链ID
@NameInMap("chain_id")
@Validation(required = true)
public String chainId;
// 交易hash
@NameInMap("tx_hash")
@Validation(required = true)
public String txHash;
public static QueryBlockanalysisTransactionRequest build(java.util.Map map) throws Exception {
QueryBlockanalysisTransactionRequest self = new QueryBlockanalysisTransactionRequest();
return TeaModel.build(map, self);
}
public QueryBlockanalysisTransactionRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public QueryBlockanalysisTransactionRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public QueryBlockanalysisTransactionRequest setChainId(String chainId) {
this.chainId = chainId;
return this;
}
public String getChainId() {
return this.chainId;
}
public QueryBlockanalysisTransactionRequest setTxHash(String txHash) {
this.txHash = txHash;
return this;
}
public String getTxHash() {
return this.txHash;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy