We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e16370e commit 9b4ecb0Copy full SHA for 9b4ecb0
polygon/rest/models/summaries.py
@@ -48,6 +48,7 @@ class SummaryResult:
48
ticker: Optional[str] = None
49
branding: Optional[Branding] = None
50
market_status: Optional[str] = None
51
+ last_updated: Optional[int] = None
52
type: Optional[str] = None
53
session: Optional[Session] = None
54
options: Optional[Options] = None
@@ -62,6 +63,7 @@ def from_dict(d):
62
63
ticker=d.get("ticker", None),
64
branding=None if "branding" not in d else Branding.from_dict(d["branding"]),
65
market_status=d.get("market_status", None),
66
+ last_updated=d.get("last_updated", None),
67
type=d.get("type", None),
68
session=None if "session" not in d else Session.from_dict(d["session"]),
69
options=None if "options" not in d else Options.from_dict(d["options"]),
0 commit comments