- added GET /accounts/{accountId}/history endpoint to get transactions history by accountId

- updated swagger schema
This commit is contained in:
dartpopikyardo
2016-03-18 17:35:18 +03:00
parent 6409ed1ab9
commit 63d0e21fc4

View File

@@ -13,4 +13,36 @@ public class AccountTransactionInfo {
this.toAccountId = toAccountId;
this.amount = amount;
}
public String getTransactionId() {
return transactionId;
}
public void setTransactionId(String transactionId) {
this.transactionId = transactionId;
}
public String getFromAccountId() {
return fromAccountId;
}
public void setFromAccountId(String fromAccountId) {
this.fromAccountId = fromAccountId;
}
public String getToAccountId() {
return toAccountId;
}
public void setToAccountId(String toAccountId) {
this.toAccountId = toAccountId;
}
public long getAmount() {
return amount;
}
public void setAmount(long amount) {
this.amount = amount;
}
}