File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed
Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 9393
9494from .definitions import Definition
9595
96+
9697AnyDefinition = typing .TypeVar ("AnyDefinition" , bound = Definition )
9798
9899# noinspection SpellCheckingInspection
Original file line number Diff line number Diff line change 33
44from polygon .rest import models
55
6- StockSymbol = str
7- ConditionTypeMap = Dict [str , str ]
8- SymbolTypeMap = Dict [str , str ]
9- TickerSymbol = str
10-
116
127class Definition :
138 _swagger_name_to_python : Dict [str , str ]
@@ -116,7 +111,7 @@ class LastQuote(Definition):
116111 "bidsize" : "bidsize" ,
117112 "bidexchange" : "bidexchange" ,
118113 "timestamp" : "timestamp" ,
119-
114+
120115 }
121116
122117 _attribute_is_primitive = {
@@ -3640,3 +3635,9 @@ class CryptoSnapshotGainersLosersApiResponse(Definition):
36403635 def __init__ (self ):
36413636 self .status : str
36423637 self .tickers : List [CryptoSnapshotTicker ]
3638+
3639+
3640+ StockSymbol = str
3641+ ConditionTypeMap = Dict [str , str ]
3642+ SymbolTypeMap = Dict [str , str ]
3643+ TickerSymbol = str
You can’t perform that action at this time.
0 commit comments