]> git.ktnx.net Git - mobile-ledger-staging.git/blobdiff - app/src/main/java/net/ktnx/mobileledger/json/v1_15/ParsedLedgerAccount.java
proper transaction parsing progress
[mobile-ledger-staging.git] / app / src / main / java / net / ktnx / mobileledger / json / v1_15 / ParsedLedgerAccount.java
index 89f3cccefc67abb88446c1477fca130ae86de571..460575fc1ea122fc088ec8173a38e9a91a4c02ee 100644 (file)
@@ -26,8 +26,15 @@ public class ParsedLedgerAccount {
     private List<ParsedBalance> aebalance;
     private List<ParsedBalance> aibalance;
     private String aname;
+    private int anumpostings;
     public ParsedLedgerAccount() {
     }
+    public int getAnumpostings() {
+        return anumpostings;
+    }
+    public void setAnumpostings(int anumpostings) {
+        this.anumpostings = anumpostings;
+    }
     public List<ParsedBalance> getAebalance() {
         return aebalance;
     }