Skip to content

Commit 9b4ecb0

Browse files
Added last_updated to get_summaries (#526)
1 parent e16370e commit 9b4ecb0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

polygon/rest/models/summaries.py

+2
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ class SummaryResult:
4848
ticker: Optional[str] = None
4949
branding: Optional[Branding] = None
5050
market_status: Optional[str] = None
51+
last_updated: Optional[int] = None
5152
type: Optional[str] = None
5253
session: Optional[Session] = None
5354
options: Optional[Options] = None
@@ -62,6 +63,7 @@ def from_dict(d):
6263
ticker=d.get("ticker", None),
6364
branding=None if "branding" not in d else Branding.from_dict(d["branding"]),
6465
market_status=d.get("market_status", None),
66+
last_updated=d.get("last_updated", None),
6567
type=d.get("type", None),
6668
session=None if "session" not in d else Session.from_dict(d["session"]),
6769
options=None if "options" not in d else Options.from_dict(d["options"]),

0 commit comments

Comments
 (0)