about summary refs log tree commit diff stats
path: root/src/Item/RegisterTransaction.php
blob: b6766400a2288bddbed5407acb8f8de5ad42a385 (plain)
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;
}