all repos — archive/ynab-ledger @ 20795d700243603c1dc7c378c82189469845e961

Convert exported YNAB data to ledger-cli

src/Item/LedgerTransaction.php (view raw)

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

namespace YnabLedger\Item;

class LedgerTransaction {
    public $date;
    public $state;
    public $payee;
    public $note;
    public $postings = [];
}