We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 610ea11 commit 95a28beCopy full SHA for 95a28be
polygon/rest/models/financials.py
@@ -429,6 +429,8 @@ class StockFinancial:
429
source_filing_file_url: Optional[str] = None
430
source_filing_url: Optional[str] = None
431
start_date: Optional[str] = None
432
+ sic: Optional[str] = None
433
+ tickers: Optional[List[str]] = None
434
435
@staticmethod
436
def from_dict(d):
@@ -445,4 +447,6 @@ def from_dict(d):
445
447
source_filing_file_url=d.get("source_filing_file_url", None),
446
448
source_filing_url=d.get("source_filing_url", None),
449
start_date=d.get("start_date", None),
450
+ sic=d.get("sic", None),
451
+ tickers=d.get("tickers", None)
452
)
0 commit comments