More annotations

from dataclasses import dataclass

@dataclass
class TransferEventConversion:
	id_: str
  from_currency: str
  to_currency: str
  quantity: str
  source: dict = {} # ideally should be another type

## dataclass annotation automatically adds the allargsconstructo

Python modules