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<XrpTransactions> 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<XrpTransactions> getTransactions() {
|
return transactions;
|
}
|
|
public void setTransactions(List<XrpTransactions> transactions) {
|
this.transactions = transactions;
|
}
|
|
|
|
|
}
|