all repos — ynab-ledger @ 102c7ffde62a1a2ee08678747583ee207b8263cf

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;
}