File tree Expand file tree Collapse file tree 1 file changed +29
-12
lines changed Expand file tree Collapse file tree 1 file changed +29
-12
lines changed Original file line number Diff line number Diff line change @@ -3043,34 +3043,51 @@ def __init__(self):
3043
3043
# noinspection SpellCheckingInspection
3044
3044
class StocksEquitiesDailyOpenCloseApiResponse (Definition ):
3045
3045
_swagger_name_to_python = {
3046
+ "from" : "from_" ,
3046
3047
"symbol" : "symbol" ,
3047
3048
"open" : "open" ,
3049
+ "high" : "high" ,
3050
+ "low" : "low" ,
3048
3051
"close" : "close" ,
3052
+ "volume" : "volume" ,
3049
3053
"afterHours" : "after_hours" ,
3050
-
3054
+ "preMarket" : "pre_market" ,
3051
3055
}
3052
3056
3053
3057
_attribute_is_primitive = {
3058
+ "from_" : True ,
3054
3059
"symbol" : True ,
3055
- "open" : False ,
3056
- "close" : False ,
3057
- "after_hours" : False ,
3058
-
3060
+ "open" : True ,
3061
+ "high" : True ,
3062
+ "low" : True ,
3063
+ "close" : True ,
3064
+ "volume" : True ,
3065
+ "afterHours" : True ,
3066
+ "preMarket" : True ,
3059
3067
}
3060
3068
3061
3069
_attributes_to_types = {
3070
+ "from_" : "str" ,
3062
3071
"symbol" : "str" ,
3063
- "open" : "HistTrade" ,
3064
- "close" : "HistTrade" ,
3065
- "after_hours" : "HistTrade" ,
3066
-
3072
+ "open" : "float" ,
3073
+ "high" : "float" ,
3074
+ "low" : "float" ,
3075
+ "close" : "float" ,
3076
+ "volume" : "float" ,
3077
+ "afterHours" : "float" ,
3078
+ "preMarket" : "float" ,
3067
3079
}
3068
3080
3069
3081
def __init__ (self ):
3082
+ self .from_ : str
3070
3083
self .symbol : str
3071
- self .open : HistTrade
3072
- self .close : HistTrade
3073
- self .after_hours : HistTrade
3084
+ self .open : float
3085
+ self .high : float
3086
+ self .low : float
3087
+ self .close : float
3088
+ self .volume : float
3089
+ self .afterHours : float
3090
+ self .preMarket : float
3074
3091
3075
3092
3076
3093
# noinspection SpellCheckingInspection
You can’t perform that action at this time.
0 commit comments