all repos — archive/ynab-ledger @ 2d371fdd6b9d805e7d7b35f53c3c626fa1408740

Convert exported YNAB data to ledger-cli

src/Item/BudgetTransaction.php (view raw)

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

namespace YnabLedger\Item;

class BudgetTransaction {
    public $date;
    public $category = [];
    public $in;
    public $out;
    public $currency;
}