all repos — archive/ynab-ledger @ 2d371fdd6b9d805e7d7b35f53c3c626fa1408740

Convert exported YNAB data to ledger-cli

Implement Ledger output

Alan Pearce
commit

2d371fdd6b9d805e7d7b35f53c3c626fa1408740

parent

115cc1a38c67606909bf3df1cc41d257fa8120ba

1 file changed, 11 insertions(+), 0 deletions(-)

changed files
A 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; +}