Skip to content

Commit

Permalink
Update financials.py
Browse files Browse the repository at this point in the history
  • Loading branch information
justinpolygon authored Aug 27, 2024
1 parent 610ea11 commit 95a28be
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions polygon/rest/models/financials.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand All @@ -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)
)

0 comments on commit 95a28be

Please sign in to comment.