about summary refs log tree commit diff stats
path: root/src/Item/LedgerPosting.php
blob: 79aeb493284c70046f331909a6d1a27faa975b0d (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

namespace YnabLedger\Item;

class LedgerPosting {
    public $account = [];
    public $isVirtual = false;
    public $amount;
    public $currency;
    public $note;
}