Skip to content

Commit 95a28be

Browse files
Update financials.py
1 parent 610ea11 commit 95a28be

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

polygon/rest/models/financials.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,8 @@ class StockFinancial:
429429
source_filing_file_url: Optional[str] = None
430430
source_filing_url: Optional[str] = None
431431
start_date: Optional[str] = None
432+
sic: Optional[str] = None
433+
tickers: Optional[List[str]] = None
432434

433435
@staticmethod
434436
def from_dict(d):
@@ -445,4 +447,6 @@ def from_dict(d):
445447
source_filing_file_url=d.get("source_filing_file_url", None),
446448
source_filing_url=d.get("source_filing_url", None),
447449
start_date=d.get("start_date", None),
450+
sic=d.get("sic", None),
451+
tickers=d.get("tickers", None)
448452
)

0 commit comments

Comments
 (0)