summaryrefslogtreecommitdiff
path: root/ledger_action.py
blob: 751d6b849a63398924b3b7ac253e346eae98708a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
from dataclasses import dataclass
from decimal import Decimal
from typing import Optional

@dataclass
class LedgerAction:
    type: str
    asset: str
    amount: Decimal
    fee: Decimal
    date: str
    refid: str