package com.xcong.excoin.modules.blackchain.model; import java.util.List; // https://github.com/ripple/rippled-historical-database#get-account-transaction-history public class XrpTransResult { private String result; //success private Integer count; // private String marker;// //transactions List transactions; public String getResult() { return result; } public void setResult(String result) { this.result = result; } public Integer getCount() { return count; } public void setCount(Integer count) { this.count = count; } public String getMarker() { return marker; } public void setMarker(String marker) { this.marker = marker; } public List getTransactions() { return transactions; } public void setTransactions(List transactions) { this.transactions = transactions; } }