all repos — ynab-ledger @ 115cc1a38c67606909bf3df1cc41d257fa8120ba

Convert exported YNAB data to ledger-cli

src/Item/RegisterTransaction.php (view raw)

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

namespace YnabLedger\Item;

class RegisterTransaction {
    public $line;
    public $account;
    public $date;
    public $payee;
    public $category;
    public $memo;
    public $out;
    public $in;
    public $cleared = false;
}