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:
48
48
ticker : Optional [str ] = None
49
49
branding : Optional [Branding ] = None
50
50
market_status : Optional [str ] = None
51
+ last_updated : Optional [int ] = None
51
52
type : Optional [str ] = None
52
53
session : Optional [Session ] = None
53
54
options : Optional [Options ] = None
@@ -62,6 +63,7 @@ def from_dict(d):
62
63
ticker = d .get ("ticker" , None ),
63
64
branding = None if "branding" not in d else Branding .from_dict (d ["branding" ]),
64
65
market_status = d .get ("market_status" , None ),
66
+ last_updated = d .get ("last_updated" , None ),
65
67
type = d .get ("type" , None ),
66
68
session = None if "session" not in d else Session .from_dict (d ["session" ]),
67
69
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