]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/java/net/ktnx/mobileledger/json/ParsedPosting.java
whitespace
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / json / ParsedPosting.java
index b09fb512aff454c1052d2e58fdc3e31885340597..308f01f4c624caf88d876e8a41c21cb04a64c04f 100644 (file)
@@ -31,10 +31,24 @@ public class ParsedPosting {
     private String paccount;
     private List<ParsedAmount> pamount;
     private String pdate = null;
+    public String getPdate2() {
+        return pdate2;
+    }
+    public void setPdate2(String pdate2) {
+        this.pdate2 = pdate2;
+    }
+    private String pdate2 = null;
     private String ptype = "RegularPosting";
     private String pcomment = "";
     private List<List<String>> ptags = new ArrayList<>();
     private String poriginal = null;
+    private int ptransaction_;
+    public int getPtransaction_() {
+        return ptransaction_;
+    }
+    public void setPtransaction_(int ptransaction_) {
+        this.ptransaction_ = ptransaction_;
+    }
     public ParsedPosting() {
     }
     public String getPdate() {