From 95a28be1a6fceb6f623fa8ec56d3e715dee92766 Mon Sep 17 00:00:00 2001 From: justinpolygon <123573436+justinpolygon@users.noreply.github.com> Date: Tue, 27 Aug 2024 10:42:32 -0700 Subject: [PATCH] Update financials.py --- polygon/rest/models/financials.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/polygon/rest/models/financials.py b/polygon/rest/models/financials.py index c4e4cbaa..76e514c2 100644 --- a/polygon/rest/models/financials.py +++ b/polygon/rest/models/financials.py @@ -429,6 +429,8 @@ class StockFinancial: source_filing_file_url: Optional[str] = None source_filing_url: Optional[str] = None start_date: Optional[str] = None + sic: Optional[str] = None + tickers: Optional[List[str]] = None @staticmethod def from_dict(d): @@ -445,4 +447,6 @@ def from_dict(d): source_filing_file_url=d.get("source_filing_file_url", None), source_filing_url=d.get("source_filing_url", None), start_date=d.get("start_date", None), + sic=d.get("sic", None), + tickers=d.get("tickers", None) )