File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff 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" ]),
You can’t perform that action at this time.
0 commit comments