package com.xcong.excoin.modules.blackchain.model;
|
|
public class XrpTransactions {
|
|
private String hash;
|
private Integer ledger_index;
|
private String date;//2019-10-28T15:01:01+00:00
|
private XrpTx tx;
|
|
public String getHash() {
|
return hash;
|
}
|
public void setHash(String hash) {
|
this.hash = hash;
|
}
|
public Integer getLedger_index() {
|
return ledger_index;
|
}
|
public void setLedger_index(Integer ledger_index) {
|
this.ledger_index = ledger_index;
|
}
|
public String getDate() {
|
return date;
|
}
|
public void setDate(String date) {
|
this.date = date;
|
}
|
public XrpTx getTx() {
|
return tx;
|
}
|
public void setTx(XrpTx tx) {
|
this.tx = tx;
|
}
|
|
|
}
|