@@ -7,14 +7,14 @@ from typing import ClassVar as _ClassVar, Mapping as _Mapping, Optional as _Opti
77DESCRIPTOR : _descriptor .FileDescriptor
88
99class VariableType_PB (int , metaclass = _enum_type_wrapper .EnumTypeWrapper ):
10- __slots__ = ()
10+ __slots__ = []
1111 Boolean : _ClassVar [VariableType_PB ]
1212 Number : _ClassVar [VariableType_PB ]
1313 String : _ClassVar [VariableType_PB ]
1414 JSON : _ClassVar [VariableType_PB ]
1515
1616class CustomDataType (int , metaclass = _enum_type_wrapper .EnumTypeWrapper ):
17- __slots__ = ()
17+ __slots__ = []
1818 Bool : _ClassVar [CustomDataType ]
1919 Num : _ClassVar [CustomDataType ]
2020 Str : _ClassVar [CustomDataType ]
@@ -29,23 +29,23 @@ Str: CustomDataType
2929Null : CustomDataType
3030
3131class NullableString (_message .Message ):
32- __slots__ = ( "value" , "isNull" )
32+ __slots__ = [ "value" , "isNull" ]
3333 VALUE_FIELD_NUMBER : _ClassVar [int ]
3434 ISNULL_FIELD_NUMBER : _ClassVar [int ]
3535 value : str
3636 isNull : bool
3737 def __init__ (self , value : _Optional [str ] = ..., isNull : bool = ...) -> None : ...
3838
3939class NullableDouble (_message .Message ):
40- __slots__ = ( "value" , "isNull" )
40+ __slots__ = [ "value" , "isNull" ]
4141 VALUE_FIELD_NUMBER : _ClassVar [int ]
4242 ISNULL_FIELD_NUMBER : _ClassVar [int ]
4343 value : float
4444 isNull : bool
4545 def __init__ (self , value : _Optional [float ] = ..., isNull : bool = ...) -> None : ...
4646
4747class CustomDataValue (_message .Message ):
48- __slots__ = ( "type" , "boolValue" , "doubleValue" , "stringValue" )
48+ __slots__ = [ "type" , "boolValue" , "doubleValue" , "stringValue" ]
4949 TYPE_FIELD_NUMBER : _ClassVar [int ]
5050 BOOLVALUE_FIELD_NUMBER : _ClassVar [int ]
5151 DOUBLEVALUE_FIELD_NUMBER : _ClassVar [int ]
@@ -57,9 +57,9 @@ class CustomDataValue(_message.Message):
5757 def __init__ (self , type : _Optional [_Union [CustomDataType , str ]] = ..., boolValue : bool = ..., doubleValue : _Optional [float ] = ..., stringValue : _Optional [str ] = ...) -> None : ...
5858
5959class NullableCustomData (_message .Message ):
60- __slots__ = ( "value" , "isNull" )
60+ __slots__ = [ "value" , "isNull" ]
6161 class ValueEntry (_message .Message ):
62- __slots__ = ( "key" , "value" )
62+ __slots__ = [ "key" , "value" ]
6363 KEY_FIELD_NUMBER : _ClassVar [int ]
6464 VALUE_FIELD_NUMBER : _ClassVar [int ]
6565 key : str
@@ -72,7 +72,7 @@ class NullableCustomData(_message.Message):
7272 def __init__ (self , value : _Optional [_Mapping [str , CustomDataValue ]] = ..., isNull : bool = ...) -> None : ...
7373
7474class VariableForUserParams_PB (_message .Message ):
75- __slots__ = ( "sdkKey" , "variableKey" , "variableType" , "user" , "shouldTrackEvent" )
75+ __slots__ = [ "sdkKey" , "variableKey" , "variableType" , "user" , "shouldTrackEvent" ]
7676 SDKKEY_FIELD_NUMBER : _ClassVar [int ]
7777 VARIABLEKEY_FIELD_NUMBER : _ClassVar [int ]
7878 VARIABLETYPE_FIELD_NUMBER : _ClassVar [int ]
@@ -86,7 +86,7 @@ class VariableForUserParams_PB(_message.Message):
8686 def __init__ (self , sdkKey : _Optional [str ] = ..., variableKey : _Optional [str ] = ..., variableType : _Optional [_Union [VariableType_PB , str ]] = ..., user : _Optional [_Union [DVCUser_PB , _Mapping ]] = ..., shouldTrackEvent : bool = ...) -> None : ...
8787
8888class 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" ]
9090 USER_ID_FIELD_NUMBER : _ClassVar [int ]
9191 EMAIL_FIELD_NUMBER : _ClassVar [int ]
9292 NAME_FIELD_NUMBER : _ClassVar [int ]
@@ -110,7 +110,7 @@ class DVCUser_PB(_message.Message):
110110 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 : ...
111111
112112class 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" ]
114114 _ID_FIELD_NUMBER : _ClassVar [int ]
115115 TYPE_FIELD_NUMBER : _ClassVar [int ]
116116 KEY_FIELD_NUMBER : _ClassVar [int ]
@@ -132,7 +132,7 @@ class SDKVariable_PB(_message.Message):
132132 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 : ...
133133
134134class EvalReason_PB (_message .Message ):
135- __slots__ = ( "reason" , "details" , "target_id" )
135+ __slots__ = [ "reason" , "details" , "target_id" ]
136136 REASON_FIELD_NUMBER : _ClassVar [int ]
137137 DETAILS_FIELD_NUMBER : _ClassVar [int ]
138138 TARGET_ID_FIELD_NUMBER : _ClassVar [int ]
0 commit comments