about summary refs log tree commit diff stats
path: root/src/Item/RegisterTransaction.php
blob: 3c9842a3809100d69b39c5a958a44b4a0c60e55a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

namespace YnabLedger\Item;

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