@JsonProperty("transactionIndex")
public String getTransactionIndex() {
return transactionIndex;
}
java类org.codehaus.jackson.annotate.JsonProperty的实例源码
Result.java 文件源码
项目:ethereum-java-wallet
阅读 25
收藏 0
点赞 0
评论 0
Result.java 文件源码
项目:ethereum-java-wallet
阅读 19
收藏 0
点赞 0
评论 0
@JsonProperty("transactionIndex")
public void setTransactionIndex(String transactionIndex) {
this.transactionIndex = transactionIndex;
}
Result.java 文件源码
项目:ethereum-java-wallet
阅读 20
收藏 0
点赞 0
评论 0
@JsonProperty("from")
public String getFrom() {
return from;
}
Result.java 文件源码
项目:ethereum-java-wallet
阅读 18
收藏 0
点赞 0
评论 0
@JsonProperty("from")
public void setFrom(String from) {
this.from = from;
}
Result.java 文件源码
项目:ethereum-java-wallet
阅读 18
收藏 0
点赞 0
评论 0
@JsonProperty("to")
public String getTo() {
return to;
}
Result.java 文件源码
项目:ethereum-java-wallet
阅读 19
收藏 0
点赞 0
评论 0
@JsonProperty("to")
public void setTo(String to) {
this.to = to;
}
Result.java 文件源码
项目:ethereum-java-wallet
阅读 26
收藏 0
点赞 0
评论 0
@JsonProperty("value")
public String getValue() {
return value;
}
Result.java 文件源码
项目:ethereum-java-wallet
阅读 23
收藏 0
点赞 0
评论 0
@JsonProperty("value")
public void setValue(String value) {
this.value = value;
}
Result.java 文件源码
项目:ethereum-java-wallet
阅读 19
收藏 0
点赞 0
评论 0
@JsonProperty("gas")
public String getGas() {
return gas;
}
Result.java 文件源码
项目:ethereum-java-wallet
阅读 19
收藏 0
点赞 0
评论 0
@JsonProperty("gas")
public void setGas(String gas) {
this.gas = gas;
}