about summary refs log tree commit diff stats
path: root/src/Item/LedgerPosting.php
diff options
context:
space:
mode:
authorAlan Pearce2015-04-06 10:58:16 +0100
committerAlan Pearce2015-04-06 11:05:01 +0100
commit2d371fdd6b9d805e7d7b35f53c3c626fa1408740 (patch)
tree2255e17ea70f1ceb9a558582f5a1fa5e9f01c5a8 /src/Item/LedgerPosting.php
parent115cc1a38c67606909bf3df1cc41d257fa8120ba (diff)
downloadynab-ledger-2d371fdd6b9d805e7d7b35f53c3c626fa1408740.tar.lz
ynab-ledger-2d371fdd6b9d805e7d7b35f53c3c626fa1408740.tar.zst
ynab-ledger-2d371fdd6b9d805e7d7b35f53c3c626fa1408740.zip
Implement Ledger output
Diffstat (limited to 'src/Item/LedgerPosting.php')
-rw-r--r--src/Item/LedgerPosting.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Item/LedgerPosting.php b/src/Item/LedgerPosting.php
new file mode 100644
index 0000000..79aeb49
--- /dev/null
+++ b/src/Item/LedgerPosting.php
@@ -0,0 +1,11 @@
+<?php
+
+namespace YnabLedger\Item;
+
+class LedgerPosting {
+    public $account = [];
+    public $isVirtual = false;
+    public $amount;
+    public $currency;
+    public $note;
+}