tastytrade.search¶
- pydantic model tastytrade.search.SymbolData(*, symbol: str, description: str)¶
Bases:
TastytradeDataDataclass holding search results for an individual item.
Show JSON schema
{ "title": "SymbolData", "description": "Dataclass holding search results for an individual item.", "type": "object", "properties": { "symbol": { "title": "Symbol", "type": "string" }, "description": { "title": "Description", "type": "string" } }, "required": [ "symbol", "description" ] }- Fields:¶