Files
raptor-trading/invest-python-master/t_tech/invest/caching/instruments_cache/models.py

14 lines
200 B
Python

from typing import List
class InstrumentResponse:
class_code: str
figi: str
ticker: str
uid: str
class InstrumentsResponse:
instruments: List[InstrumentResponse]