all repos — archive/ynab-ledger @ 5f38bf11558b0c3736123c70b1cc25fd7bfc435d

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