
com.aliyuncs.baas.model.v20181221.DescribeAntChainTransactionV2Response Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.baas.model.v20181221;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.baas.transform.v20181221.DescribeAntChainTransactionV2ResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeAntChainTransactionV2Response extends AcsResponse {
private String httpStatusCode;
private String requestId;
private Boolean success;
private String resultMessage;
private String code;
private String message;
private String resultCode;
private Result result;
public String getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(String httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public String getResultMessage() {
return this.resultMessage;
}
public void setResultMessage(String resultMessage) {
this.resultMessage = resultMessage;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getResultCode() {
return this.resultCode;
}
public void setResultCode(String resultCode) {
this.resultCode = resultCode;
}
public Result getResult() {
return this.result;
}
public void setResult(Result result) {
this.result = result;
}
public static class Result {
private String hash;
private String blockHash;
private String blockVersion;
private Long blockHeight;
private Long createTime;
private Transaction transaction;
public String getHash() {
return this.hash;
}
public void setHash(String hash) {
this.hash = hash;
}
public String getBlockHash() {
return this.blockHash;
}
public void setBlockHash(String blockHash) {
this.blockHash = blockHash;
}
public String getBlockVersion() {
return this.blockVersion;
}
public void setBlockVersion(String blockVersion) {
this.blockVersion = blockVersion;
}
public Long getBlockHeight() {
return this.blockHeight;
}
public void setBlockHeight(Long blockHeight) {
this.blockHeight = blockHeight;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public Transaction getTransaction() {
return this.transaction;
}
public void setTransaction(Transaction transaction) {
this.transaction = transaction;
}
public static class Transaction {
private String hash;
private String value;
private String from;
private String data;
private String nonce;
private String to;
private Long timestamp;
private String gas;
private String txType;
private Long period;
private List extentions;
private List signatures;
public String getHash() {
return this.hash;
}
public void setHash(String hash) {
this.hash = hash;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
public String getFrom() {
return this.from;
}
public void setFrom(String from) {
this.from = from;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
public String getNonce() {
return this.nonce;
}
public void setNonce(String nonce) {
this.nonce = nonce;
}
public String getTo() {
return this.to;
}
public void setTo(String to) {
this.to = to;
}
public Long getTimestamp() {
return this.timestamp;
}
public void setTimestamp(Long timestamp) {
this.timestamp = timestamp;
}
public String getGas() {
return this.gas;
}
public void setGas(String gas) {
this.gas = gas;
}
public String getTxType() {
return this.txType;
}
public void setTxType(String txType) {
this.txType = txType;
}
public Long getPeriod() {
return this.period;
}
public void setPeriod(Long period) {
this.period = period;
}
public List getExtentions() {
return this.extentions;
}
public void setExtentions(List extentions) {
this.extentions = extentions;
}
public List getSignatures() {
return this.signatures;
}
public void setSignatures(List signatures) {
this.signatures = signatures;
}
}
}
@Override
public DescribeAntChainTransactionV2Response getInstance(UnmarshallerContext context) {
return DescribeAntChainTransactionV2ResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy