@@ -7,14 +7,14 @@ from typing import ClassVar as _ClassVar, Mapping as _Mapping, Optional as _Opti
7
7
DESCRIPTOR : _descriptor .FileDescriptor
8
8
9
9
class VariableType_PB (int , metaclass = _enum_type_wrapper .EnumTypeWrapper ):
10
- __slots__ = ()
10
+ __slots__ = []
11
11
Boolean : _ClassVar [VariableType_PB ]
12
12
Number : _ClassVar [VariableType_PB ]
13
13
String : _ClassVar [VariableType_PB ]
14
14
JSON : _ClassVar [VariableType_PB ]
15
15
16
16
class CustomDataType (int , metaclass = _enum_type_wrapper .EnumTypeWrapper ):
17
- __slots__ = ()
17
+ __slots__ = []
18
18
Bool : _ClassVar [CustomDataType ]
19
19
Num : _ClassVar [CustomDataType ]
20
20
Str : _ClassVar [CustomDataType ]
@@ -29,23 +29,23 @@ Str: CustomDataType
29
29
Null : CustomDataType
30
30
31
31
class NullableString (_message .Message ):
32
- __slots__ = ( "value" , "isNull" )
32
+ __slots__ = [ "value" , "isNull" ]
33
33
VALUE_FIELD_NUMBER : _ClassVar [int ]
34
34
ISNULL_FIELD_NUMBER : _ClassVar [int ]
35
35
value : str
36
36
isNull : bool
37
37
def __init__ (self , value : _Optional [str ] = ..., isNull : bool = ...) -> None : ...
38
38
39
39
class NullableDouble (_message .Message ):
40
- __slots__ = ( "value" , "isNull" )
40
+ __slots__ = [ "value" , "isNull" ]
41
41
VALUE_FIELD_NUMBER : _ClassVar [int ]
42
42
ISNULL_FIELD_NUMBER : _ClassVar [int ]
43
43
value : float
44
44
isNull : bool
45
45
def __init__ (self , value : _Optional [float ] = ..., isNull : bool = ...) -> None : ...
46
46
47
47
class CustomDataValue (_message .Message ):
48
- __slots__ = ( "type" , "boolValue" , "doubleValue" , "stringValue" )
48
+ __slots__ = [ "type" , "boolValue" , "doubleValue" , "stringValue" ]
49
49
TYPE_FIELD_NUMBER : _ClassVar [int ]
50
50
BOOLVALUE_FIELD_NUMBER : _ClassVar [int ]
51
51
DOUBLEVALUE_FIELD_NUMBER : _ClassVar [int ]
@@ -57,9 +57,9 @@ class CustomDataValue(_message.Message):
57
57
def __init__ (self , type : _Optional [_Union [CustomDataType , str ]] = ..., boolValue : bool = ..., doubleValue : _Optional [float ] = ..., stringValue : _Optional [str ] = ...) -> None : ...
58
58
59
59
class NullableCustomData (_message .Message ):
60
- __slots__ = ( "value" , "isNull" )
60
+ __slots__ = [ "value" , "isNull" ]
61
61
class ValueEntry (_message .Message ):
62
- __slots__ = ( "key" , "value" )
62
+ __slots__ = [ "key" , "value" ]
63
63
KEY_FIELD_NUMBER : _ClassVar [int ]
64
64
VALUE_FIELD_NUMBER : _ClassVar [int ]
65
65
key : str
@@ -72,7 +72,7 @@ class NullableCustomData(_message.Message):
72
72
def __init__ (self , value : _Optional [_Mapping [str , CustomDataValue ]] = ..., isNull : bool = ...) -> None : ...
73
73
74
74
class VariableForUserParams_PB (_message .Message ):
75
- __slots__ = ( "sdkKey" , "variableKey" , "variableType" , "user" , "shouldTrackEvent" )
75
+ __slots__ = [ "sdkKey" , "variableKey" , "variableType" , "user" , "shouldTrackEvent" ]
76
76
SDKKEY_FIELD_NUMBER : _ClassVar [int ]
77
77
VARIABLEKEY_FIELD_NUMBER : _ClassVar [int ]
78
78
VARIABLETYPE_FIELD_NUMBER : _ClassVar [int ]
@@ -86,7 +86,7 @@ class VariableForUserParams_PB(_message.Message):
86
86
def __init__ (self , sdkKey : _Optional [str ] = ..., variableKey : _Optional [str ] = ..., variableType : _Optional [_Union [VariableType_PB , str ]] = ..., user : _Optional [_Union [DVCUser_PB , _Mapping ]] = ..., shouldTrackEvent : bool = ...) -> None : ...
87
87
88
88
class DVCUser_PB (_message .Message ):
89
- __slots__ = ( "user_id" , "email" , "name" , "language" , "country" , "appBuild" , "appVersion" , "deviceModel" , "customData" , "privateCustomData" )
89
+ __slots__ = [ "user_id" , "email" , "name" , "language" , "country" , "appBuild" , "appVersion" , "deviceModel" , "customData" , "privateCustomData" ]
90
90
USER_ID_FIELD_NUMBER : _ClassVar [int ]
91
91
EMAIL_FIELD_NUMBER : _ClassVar [int ]
92
92
NAME_FIELD_NUMBER : _ClassVar [int ]
@@ -110,7 +110,7 @@ class DVCUser_PB(_message.Message):
110
110
def __init__ (self , user_id : _Optional [str ] = ..., email : _Optional [_Union [NullableString , _Mapping ]] = ..., name : _Optional [_Union [NullableString , _Mapping ]] = ..., language : _Optional [_Union [NullableString , _Mapping ]] = ..., country : _Optional [_Union [NullableString , _Mapping ]] = ..., appBuild : _Optional [_Union [NullableDouble , _Mapping ]] = ..., appVersion : _Optional [_Union [NullableString , _Mapping ]] = ..., deviceModel : _Optional [_Union [NullableString , _Mapping ]] = ..., customData : _Optional [_Union [NullableCustomData , _Mapping ]] = ..., privateCustomData : _Optional [_Union [NullableCustomData , _Mapping ]] = ...) -> None : ...
111
111
112
112
class SDKVariable_PB (_message .Message ):
113
- __slots__ = ( "_id" , "type" , "key" , "boolValue" , "doubleValue" , "stringValue" , "evalReason" , "_feature" , "eval" )
113
+ __slots__ = [ "_id" , "type" , "key" , "boolValue" , "doubleValue" , "stringValue" , "evalReason" , "_feature" , "eval" ]
114
114
_ID_FIELD_NUMBER : _ClassVar [int ]
115
115
TYPE_FIELD_NUMBER : _ClassVar [int ]
116
116
KEY_FIELD_NUMBER : _ClassVar [int ]
@@ -132,7 +132,7 @@ class SDKVariable_PB(_message.Message):
132
132
def __init__ (self , _id : _Optional [str ] = ..., type : _Optional [_Union [VariableType_PB , str ]] = ..., key : _Optional [str ] = ..., boolValue : bool = ..., doubleValue : _Optional [float ] = ..., stringValue : _Optional [str ] = ..., evalReason : _Optional [_Union [NullableString , _Mapping ]] = ..., _feature : _Optional [_Union [NullableString , _Mapping ]] = ..., eval : _Optional [_Union [EvalReason_PB , _Mapping ]] = ...) -> None : ...
133
133
134
134
class EvalReason_PB (_message .Message ):
135
- __slots__ = ( "reason" , "details" , "target_id" )
135
+ __slots__ = [ "reason" , "details" , "target_id" ]
136
136
REASON_FIELD_NUMBER : _ClassVar [int ]
137
137
DETAILS_FIELD_NUMBER : _ClassVar [int ]
138
138
TARGET_ID_FIELD_NUMBER : _ClassVar [int ]
0 commit comments