@@ -3719,6 +3719,78 @@ def __init__(self):
3719
3719
self .last : LastForexQuote
3720
3720
3721
3721
3722
+ # noinspection SpellCheckingInspection
3723
+ class ForexCurrenciesGroupedDailyApiResponse (Definition ):
3724
+ _swagger_name_to_python = {
3725
+ "status" : "status" ,
3726
+ "adjusted" : "adjusted" ,
3727
+ "queryCount" : "queryCount" ,
3728
+ "resultsCount" : "resultsCount" ,
3729
+ "results" : "results" ,
3730
+ }
3731
+
3732
+ _attribute_is_primitive = {
3733
+ "status" : True ,
3734
+ "adjusted" : True ,
3735
+ "queryCount" : True ,
3736
+ "resultsCount" : True ,
3737
+ "results" : False ,
3738
+ }
3739
+
3740
+ _attributes_to_types = {
3741
+ "status" : "str" ,
3742
+ "adjusted" : "bool" ,
3743
+ "queryCount" : "int" ,
3744
+ "resultsCount" : "int" ,
3745
+ "results" : "List[Aggv2]"
3746
+ }
3747
+
3748
+ def __init__ (self ):
3749
+ self .status : str
3750
+ self .adjusted : bool
3751
+ self .queryCount : int
3752
+ self .resultsCount : int
3753
+ self .results : List [Aggv2 ]
3754
+
3755
+
3756
+ # noinspection SpellCheckingInspection
3757
+ class ForexCurrenciesPreviousCloseApiResponse (Definition ):
3758
+ _swagger_name_to_python = {
3759
+ "ticker" : "ticker" ,
3760
+ "status" : "status" ,
3761
+ "adjusted" : "adjusted" ,
3762
+ "queryCount" : "queryCount" ,
3763
+ "resultsCount" : "resultsCount" ,
3764
+ "results" : "results" ,
3765
+ }
3766
+
3767
+ _attribute_is_primitive = {
3768
+ "ticker" : True ,
3769
+ "status" : True ,
3770
+ "adjusted" : True ,
3771
+ "queryCount" : True ,
3772
+ "resultsCount" : True ,
3773
+ "results" : False ,
3774
+ }
3775
+
3776
+ _attributes_to_types = {
3777
+ "ticker" : "str" ,
3778
+ "status" : "str" ,
3779
+ "adjusted" : "bool" ,
3780
+ "queryCount" : "int" ,
3781
+ "resultsCount" : "int" ,
3782
+ "results" : "List[Aggv2]"
3783
+ }
3784
+
3785
+ def __init__ (self ):
3786
+ self .ticker : str
3787
+ self .status : str
3788
+ self .adjusted : bool
3789
+ self .queryCount : int
3790
+ self .resultsCount : int
3791
+ self .results : List [Aggv2 ]
3792
+
3793
+
3722
3794
# noinspection SpellCheckingInspection
3723
3795
class ForexCurrenciesSnapshotAllTickersApiResponse (Definition ):
3724
3796
_swagger_name_to_python = {
@@ -3744,6 +3816,28 @@ def __init__(self):
3744
3816
self .tickers : List [ForexSnapshotTicker ]
3745
3817
3746
3818
3819
+ # noinspection SpellCheckingInspection
3820
+ class ForexCurrenciesSnapshotSingleTickerApiResponse (Definition ):
3821
+ _swagger_name_to_python = {
3822
+ "status" : "status" ,
3823
+ "ticker" : "ticker" ,
3824
+ }
3825
+
3826
+ _attribute_is_primitive = {
3827
+ "status" : True ,
3828
+ "ticker" : False ,
3829
+ }
3830
+
3831
+ _attributes_to_types = {
3832
+ "status" : "str" ,
3833
+ "ticker" : "ForexSnapshotTicker" ,
3834
+ }
3835
+
3836
+ def __init__ (self ):
3837
+ self .status : str
3838
+ self .ticker : ForexSnapshotTicker
3839
+
3840
+
3747
3841
# noinspection SpellCheckingInspection
3748
3842
class ForexCurrenciesSnapshotGainersLosersApiResponse (Definition ):
3749
3843
_swagger_name_to_python = {
@@ -3909,6 +4003,77 @@ def __init__(self):
3909
4003
self .ticks : List [CryptoTickJson ]
3910
4004
3911
4005
4006
+ # noinspection SpellCheckingInspection
4007
+ class CryptoGroupedDailyApiResponse (Definition ):
4008
+ _swagger_name_to_python = {
4009
+ "status" : "status" ,
4010
+ "adjusted" : "adjusted" ,
4011
+ "queryCount" : "queryCount" ,
4012
+ "resultsCount" : "resultsCount" ,
4013
+ "results" : "results" ,
4014
+ }
4015
+
4016
+ _attribute_is_primitive = {
4017
+ "status" : True ,
4018
+ "adjusted" : True ,
4019
+ "queryCount" : True ,
4020
+ "resultsCount" : True ,
4021
+ "results" : False ,
4022
+ }
4023
+
4024
+ _attributes_to_types = {
4025
+ "status" : "str" ,
4026
+ "adjusted" : "bool" ,
4027
+ "queryCount" : "int" ,
4028
+ "resultsCount" : "int" ,
4029
+ "results" : "List[Aggv2]"
4030
+ }
4031
+
4032
+ def __init__ (self ):
4033
+ self .status : str
4034
+ self .adjusted : bool
4035
+ self .queryCount : int
4036
+ self .resultsCount : int
4037
+ self .results : List [Aggv2 ]
4038
+
4039
+
4040
+ # noinspection SpellCheckingInspection
4041
+ class CryptoPreviousCloseApiResponse (Definition ):
4042
+ _swagger_name_to_python = {
4043
+ "ticker" : "ticker" ,
4044
+ "status" : "status" ,
4045
+ "adjusted" : "adjusted" ,
4046
+ "queryCount" : "queryCount" ,
4047
+ "resultsCount" : "resultsCount" ,
4048
+ "results" : "results" ,
4049
+ }
4050
+
4051
+ _attribute_is_primitive = {
4052
+ "ticker" : True ,
4053
+ "status" : True ,
4054
+ "adjusted" : True ,
4055
+ "queryCount" : True ,
4056
+ "resultsCount" : True ,
4057
+ "results" : False ,
4058
+ }
4059
+
4060
+ _attributes_to_types = {
4061
+ "ticker" : "str" ,
4062
+ "status" : "str" ,
4063
+ "adjusted" : "bool" ,
4064
+ "queryCount" : "int" ,
4065
+ "resultsCount" : "int" ,
4066
+ "results" : "List[Aggv2]"
4067
+ }
4068
+
4069
+ def __init__ (self ):
4070
+ self .ticker : str
4071
+ self .status : str
4072
+ self .adjusted : bool
4073
+ self .queryCount : int
4074
+ self .resultsCount : int
4075
+ self .results : List [Aggv2 ]
4076
+
3912
4077
# noinspection SpellCheckingInspection
3913
4078
class CryptoSnapshotAllTickersApiResponse (Definition ):
3914
4079
_swagger_name_to_python = {
0 commit comments