all repos — archive/ynab-ledger @ 2d371fdd6b9d805e7d7b35f53c3c626fa1408740

Convert exported YNAB data to ledger-cli

src/Item/LedgerPosting.php (view raw)

1
2
3
4
5
6
7
8
9
10
11
<?php

namespace YnabLedger\Item;

class LedgerPosting {
    public $account = [];
    public $isVirtual = false;
    public $amount;
    public $currency;
    public $note;
}