all repos — archive/ynab-ledger @ 7cbc1585aabee7ce0f2d42cf56ee8c1bef2e6601

Convert exported YNAB data to ledger-cli

src/Item/LedgerTransaction.php (view raw)

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

namespace YnabLedger\Item;

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