protobuf-platform 1.0.208 → 1.0.210
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/user/user.proto +24 -20
- package/user/user_pb.js +328 -154
package/package.json
CHANGED
package/user/user.proto
CHANGED
@@ -79,26 +79,27 @@ message UserDataRequest {
|
|
79
79
|
optional string requested_area = 2;
|
80
80
|
}
|
81
81
|
message UserRequest {
|
82
|
-
|
83
|
-
optional string
|
84
|
-
optional string
|
85
|
-
optional string
|
86
|
-
optional string
|
87
|
-
optional string
|
88
|
-
optional string
|
89
|
-
optional string
|
90
|
-
optional string
|
91
|
-
optional
|
92
|
-
optional
|
93
|
-
optional float
|
94
|
-
optional
|
95
|
-
optional
|
96
|
-
optional
|
97
|
-
optional
|
98
|
-
optional int32
|
99
|
-
optional int32
|
100
|
-
optional int32
|
101
|
-
optional int32
|
82
|
+
int32 id = 1;
|
83
|
+
optional string email = 2;
|
84
|
+
optional string phone = 3;
|
85
|
+
optional string currency = 4;
|
86
|
+
optional string country = 5;
|
87
|
+
optional string city = 6;
|
88
|
+
optional string first_name = 7;
|
89
|
+
optional string last_name = 8;
|
90
|
+
optional string birthday = 9;
|
91
|
+
optional string locale = 10;
|
92
|
+
optional int32 role_id = 11;
|
93
|
+
optional float balance_real = 12;
|
94
|
+
optional float balance_bonus = 13;
|
95
|
+
optional string balance_type = 14;
|
96
|
+
optional int32 affiliate_id = 15;
|
97
|
+
optional string timezone = 16;
|
98
|
+
optional int32 risk_status_id = 17;
|
99
|
+
optional int32 category_id = 18;
|
100
|
+
optional int32 block_user = 19;
|
101
|
+
optional int32 block_deposit = 20;
|
102
|
+
optional int32 block_bet = 21;
|
102
103
|
}
|
103
104
|
message UserDataResponse {
|
104
105
|
int32 id = 1;
|
@@ -125,6 +126,9 @@ message UserDataResponse {
|
|
125
126
|
optional string created = 22;
|
126
127
|
optional UserLoyaltyItem loyalty = 23;
|
127
128
|
optional int32 notifications_count = 24;
|
129
|
+
optional int32 block_user = 25;
|
130
|
+
optional int32 block_deposit = 26;
|
131
|
+
optional int32 block_bet = 27;
|
128
132
|
}
|
129
133
|
message UsersResponse {
|
130
134
|
repeated UserDataResponse items = 1;
|
package/user/user_pb.js
CHANGED
@@ -2844,26 +2844,27 @@ proto.user.UserRequest.prototype.toObject = function(opt_includeInstance) {
|
|
2844
2844
|
*/
|
2845
2845
|
proto.user.UserRequest.toObject = function(includeInstance, msg) {
|
2846
2846
|
var f, obj = {
|
2847
|
-
|
2848
|
-
|
2849
|
-
|
2850
|
-
|
2851
|
-
|
2852
|
-
|
2853
|
-
|
2854
|
-
|
2855
|
-
|
2856
|
-
|
2857
|
-
|
2858
|
-
|
2859
|
-
|
2860
|
-
|
2861
|
-
|
2862
|
-
|
2863
|
-
|
2864
|
-
|
2865
|
-
|
2866
|
-
|
2847
|
+
id: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
2848
|
+
email: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
2849
|
+
phone: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
2850
|
+
currency: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
2851
|
+
country: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
2852
|
+
city: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
2853
|
+
firstName: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
2854
|
+
lastName: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
2855
|
+
birthday: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
2856
|
+
locale: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
2857
|
+
roleId: jspb.Message.getFieldWithDefault(msg, 11, 0),
|
2858
|
+
balanceReal: jspb.Message.getFloatingPointFieldWithDefault(msg, 12, 0.0),
|
2859
|
+
balanceBonus: jspb.Message.getFloatingPointFieldWithDefault(msg, 13, 0.0),
|
2860
|
+
balanceType: jspb.Message.getFieldWithDefault(msg, 14, ""),
|
2861
|
+
affiliateId: jspb.Message.getFieldWithDefault(msg, 15, 0),
|
2862
|
+
timezone: jspb.Message.getFieldWithDefault(msg, 16, ""),
|
2863
|
+
riskStatusId: jspb.Message.getFieldWithDefault(msg, 17, 0),
|
2864
|
+
categoryId: jspb.Message.getFieldWithDefault(msg, 18, 0),
|
2865
|
+
blockUser: jspb.Message.getFieldWithDefault(msg, 19, 0),
|
2866
|
+
blockDeposit: jspb.Message.getFieldWithDefault(msg, 20, 0),
|
2867
|
+
blockBet: jspb.Message.getFieldWithDefault(msg, 21, 0)
|
2867
2868
|
};
|
2868
2869
|
|
2869
2870
|
if (includeInstance) {
|
@@ -2901,82 +2902,86 @@ proto.user.UserRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
2901
2902
|
var field = reader.getFieldNumber();
|
2902
2903
|
switch (field) {
|
2903
2904
|
case 1:
|
2905
|
+
var value = /** @type {number} */ (reader.readInt32());
|
2906
|
+
msg.setId(value);
|
2907
|
+
break;
|
2908
|
+
case 2:
|
2904
2909
|
var value = /** @type {string} */ (reader.readString());
|
2905
2910
|
msg.setEmail(value);
|
2906
2911
|
break;
|
2907
|
-
case
|
2912
|
+
case 3:
|
2908
2913
|
var value = /** @type {string} */ (reader.readString());
|
2909
2914
|
msg.setPhone(value);
|
2910
2915
|
break;
|
2911
|
-
case
|
2916
|
+
case 4:
|
2912
2917
|
var value = /** @type {string} */ (reader.readString());
|
2913
2918
|
msg.setCurrency(value);
|
2914
2919
|
break;
|
2915
|
-
case
|
2920
|
+
case 5:
|
2916
2921
|
var value = /** @type {string} */ (reader.readString());
|
2917
2922
|
msg.setCountry(value);
|
2918
2923
|
break;
|
2919
|
-
case
|
2924
|
+
case 6:
|
2920
2925
|
var value = /** @type {string} */ (reader.readString());
|
2921
2926
|
msg.setCity(value);
|
2922
2927
|
break;
|
2923
|
-
case
|
2928
|
+
case 7:
|
2924
2929
|
var value = /** @type {string} */ (reader.readString());
|
2925
2930
|
msg.setFirstName(value);
|
2926
2931
|
break;
|
2927
|
-
case
|
2932
|
+
case 8:
|
2928
2933
|
var value = /** @type {string} */ (reader.readString());
|
2929
2934
|
msg.setLastName(value);
|
2930
2935
|
break;
|
2931
|
-
case
|
2936
|
+
case 9:
|
2932
2937
|
var value = /** @type {string} */ (reader.readString());
|
2933
2938
|
msg.setBirthday(value);
|
2934
2939
|
break;
|
2935
|
-
case
|
2940
|
+
case 10:
|
2936
2941
|
var value = /** @type {string} */ (reader.readString());
|
2937
2942
|
msg.setLocale(value);
|
2938
2943
|
break;
|
2939
|
-
case
|
2944
|
+
case 11:
|
2940
2945
|
var value = /** @type {number} */ (reader.readInt32());
|
2941
2946
|
msg.setRoleId(value);
|
2942
2947
|
break;
|
2943
|
-
case
|
2948
|
+
case 12:
|
2944
2949
|
var value = /** @type {number} */ (reader.readFloat());
|
2945
2950
|
msg.setBalanceReal(value);
|
2946
2951
|
break;
|
2947
|
-
case
|
2952
|
+
case 13:
|
2948
2953
|
var value = /** @type {number} */ (reader.readFloat());
|
2949
2954
|
msg.setBalanceBonus(value);
|
2950
2955
|
break;
|
2951
|
-
case
|
2956
|
+
case 14:
|
2952
2957
|
var value = /** @type {string} */ (reader.readString());
|
2953
2958
|
msg.setBalanceType(value);
|
2954
2959
|
break;
|
2955
|
-
case
|
2960
|
+
case 15:
|
2956
2961
|
var value = /** @type {number} */ (reader.readInt32());
|
2957
2962
|
msg.setAffiliateId(value);
|
2958
2963
|
break;
|
2959
|
-
case
|
2964
|
+
case 16:
|
2960
2965
|
var value = /** @type {string} */ (reader.readString());
|
2961
2966
|
msg.setTimezone(value);
|
2962
2967
|
break;
|
2963
|
-
case
|
2968
|
+
case 17:
|
2964
2969
|
var value = /** @type {number} */ (reader.readInt32());
|
2965
2970
|
msg.setRiskStatusId(value);
|
2966
2971
|
break;
|
2967
|
-
case
|
2972
|
+
case 18:
|
2968
2973
|
var value = /** @type {number} */ (reader.readInt32());
|
2969
2974
|
msg.setCategoryId(value);
|
2970
2975
|
break;
|
2971
|
-
case
|
2976
|
+
case 19:
|
2972
2977
|
var value = /** @type {number} */ (reader.readInt32());
|
2973
2978
|
msg.setBlockUser(value);
|
2974
2979
|
break;
|
2975
|
-
case
|
2980
|
+
case 20:
|
2976
2981
|
var value = /** @type {number} */ (reader.readInt32());
|
2977
2982
|
msg.setBlockDeposit(value);
|
2978
2983
|
break;
|
2979
|
-
case
|
2984
|
+
case 21:
|
2980
2985
|
var value = /** @type {number} */ (reader.readInt32());
|
2981
2986
|
msg.setBlockBet(value);
|
2982
2987
|
break;
|
@@ -3009,9 +3014,9 @@ proto.user.UserRequest.prototype.serializeBinary = function() {
|
|
3009
3014
|
*/
|
3010
3015
|
proto.user.UserRequest.serializeBinaryToWriter = function(message, writer) {
|
3011
3016
|
var f = undefined;
|
3012
|
-
f =
|
3013
|
-
if (f
|
3014
|
-
writer.
|
3017
|
+
f = message.getId();
|
3018
|
+
if (f !== 0) {
|
3019
|
+
writer.writeInt32(
|
3015
3020
|
1,
|
3016
3021
|
f
|
3017
3022
|
);
|
@@ -3072,16 +3077,16 @@ proto.user.UserRequest.serializeBinaryToWriter = function(message, writer) {
|
|
3072
3077
|
f
|
3073
3078
|
);
|
3074
3079
|
}
|
3075
|
-
f = /** @type {
|
3080
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 10));
|
3076
3081
|
if (f != null) {
|
3077
|
-
writer.
|
3082
|
+
writer.writeString(
|
3078
3083
|
10,
|
3079
3084
|
f
|
3080
3085
|
);
|
3081
3086
|
}
|
3082
3087
|
f = /** @type {number} */ (jspb.Message.getField(message, 11));
|
3083
3088
|
if (f != null) {
|
3084
|
-
writer.
|
3089
|
+
writer.writeInt32(
|
3085
3090
|
11,
|
3086
3091
|
f
|
3087
3092
|
);
|
@@ -3093,30 +3098,30 @@ proto.user.UserRequest.serializeBinaryToWriter = function(message, writer) {
|
|
3093
3098
|
f
|
3094
3099
|
);
|
3095
3100
|
}
|
3096
|
-
f = /** @type {
|
3101
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 13));
|
3097
3102
|
if (f != null) {
|
3098
|
-
writer.
|
3103
|
+
writer.writeFloat(
|
3099
3104
|
13,
|
3100
3105
|
f
|
3101
3106
|
);
|
3102
3107
|
}
|
3103
|
-
f = /** @type {
|
3108
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 14));
|
3104
3109
|
if (f != null) {
|
3105
|
-
writer.
|
3110
|
+
writer.writeString(
|
3106
3111
|
14,
|
3107
3112
|
f
|
3108
3113
|
);
|
3109
3114
|
}
|
3110
|
-
f = /** @type {
|
3115
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 15));
|
3111
3116
|
if (f != null) {
|
3112
|
-
writer.
|
3117
|
+
writer.writeInt32(
|
3113
3118
|
15,
|
3114
3119
|
f
|
3115
3120
|
);
|
3116
3121
|
}
|
3117
|
-
f = /** @type {
|
3122
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 16));
|
3118
3123
|
if (f != null) {
|
3119
|
-
writer.
|
3124
|
+
writer.writeString(
|
3120
3125
|
16,
|
3121
3126
|
f
|
3122
3127
|
);
|
@@ -3149,15 +3154,40 @@ proto.user.UserRequest.serializeBinaryToWriter = function(message, writer) {
|
|
3149
3154
|
f
|
3150
3155
|
);
|
3151
3156
|
}
|
3157
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 21));
|
3158
|
+
if (f != null) {
|
3159
|
+
writer.writeInt32(
|
3160
|
+
21,
|
3161
|
+
f
|
3162
|
+
);
|
3163
|
+
}
|
3152
3164
|
};
|
3153
3165
|
|
3154
3166
|
|
3155
3167
|
/**
|
3156
|
-
* optional
|
3168
|
+
* optional int32 id = 1;
|
3169
|
+
* @return {number}
|
3170
|
+
*/
|
3171
|
+
proto.user.UserRequest.prototype.getId = function() {
|
3172
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
|
3173
|
+
};
|
3174
|
+
|
3175
|
+
|
3176
|
+
/**
|
3177
|
+
* @param {number} value
|
3178
|
+
* @return {!proto.user.UserRequest} returns this
|
3179
|
+
*/
|
3180
|
+
proto.user.UserRequest.prototype.setId = function(value) {
|
3181
|
+
return jspb.Message.setProto3IntField(this, 1, value);
|
3182
|
+
};
|
3183
|
+
|
3184
|
+
|
3185
|
+
/**
|
3186
|
+
* optional string email = 2;
|
3157
3187
|
* @return {string}
|
3158
3188
|
*/
|
3159
3189
|
proto.user.UserRequest.prototype.getEmail = function() {
|
3160
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
3190
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
3161
3191
|
};
|
3162
3192
|
|
3163
3193
|
|
@@ -3166,7 +3196,7 @@ proto.user.UserRequest.prototype.getEmail = function() {
|
|
3166
3196
|
* @return {!proto.user.UserRequest} returns this
|
3167
3197
|
*/
|
3168
3198
|
proto.user.UserRequest.prototype.setEmail = function(value) {
|
3169
|
-
return jspb.Message.setField(this,
|
3199
|
+
return jspb.Message.setField(this, 2, value);
|
3170
3200
|
};
|
3171
3201
|
|
3172
3202
|
|
@@ -3175,7 +3205,7 @@ proto.user.UserRequest.prototype.setEmail = function(value) {
|
|
3175
3205
|
* @return {!proto.user.UserRequest} returns this
|
3176
3206
|
*/
|
3177
3207
|
proto.user.UserRequest.prototype.clearEmail = function() {
|
3178
|
-
return jspb.Message.setField(this,
|
3208
|
+
return jspb.Message.setField(this, 2, undefined);
|
3179
3209
|
};
|
3180
3210
|
|
3181
3211
|
|
@@ -3184,16 +3214,16 @@ proto.user.UserRequest.prototype.clearEmail = function() {
|
|
3184
3214
|
* @return {boolean}
|
3185
3215
|
*/
|
3186
3216
|
proto.user.UserRequest.prototype.hasEmail = function() {
|
3187
|
-
return jspb.Message.getField(this,
|
3217
|
+
return jspb.Message.getField(this, 2) != null;
|
3188
3218
|
};
|
3189
3219
|
|
3190
3220
|
|
3191
3221
|
/**
|
3192
|
-
* optional string phone =
|
3222
|
+
* optional string phone = 3;
|
3193
3223
|
* @return {string}
|
3194
3224
|
*/
|
3195
3225
|
proto.user.UserRequest.prototype.getPhone = function() {
|
3196
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
3226
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
3197
3227
|
};
|
3198
3228
|
|
3199
3229
|
|
@@ -3202,7 +3232,7 @@ proto.user.UserRequest.prototype.getPhone = function() {
|
|
3202
3232
|
* @return {!proto.user.UserRequest} returns this
|
3203
3233
|
*/
|
3204
3234
|
proto.user.UserRequest.prototype.setPhone = function(value) {
|
3205
|
-
return jspb.Message.setField(this,
|
3235
|
+
return jspb.Message.setField(this, 3, value);
|
3206
3236
|
};
|
3207
3237
|
|
3208
3238
|
|
@@ -3211,7 +3241,7 @@ proto.user.UserRequest.prototype.setPhone = function(value) {
|
|
3211
3241
|
* @return {!proto.user.UserRequest} returns this
|
3212
3242
|
*/
|
3213
3243
|
proto.user.UserRequest.prototype.clearPhone = function() {
|
3214
|
-
return jspb.Message.setField(this,
|
3244
|
+
return jspb.Message.setField(this, 3, undefined);
|
3215
3245
|
};
|
3216
3246
|
|
3217
3247
|
|
@@ -3220,16 +3250,16 @@ proto.user.UserRequest.prototype.clearPhone = function() {
|
|
3220
3250
|
* @return {boolean}
|
3221
3251
|
*/
|
3222
3252
|
proto.user.UserRequest.prototype.hasPhone = function() {
|
3223
|
-
return jspb.Message.getField(this,
|
3253
|
+
return jspb.Message.getField(this, 3) != null;
|
3224
3254
|
};
|
3225
3255
|
|
3226
3256
|
|
3227
3257
|
/**
|
3228
|
-
* optional string currency =
|
3258
|
+
* optional string currency = 4;
|
3229
3259
|
* @return {string}
|
3230
3260
|
*/
|
3231
3261
|
proto.user.UserRequest.prototype.getCurrency = function() {
|
3232
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
3262
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
3233
3263
|
};
|
3234
3264
|
|
3235
3265
|
|
@@ -3238,7 +3268,7 @@ proto.user.UserRequest.prototype.getCurrency = function() {
|
|
3238
3268
|
* @return {!proto.user.UserRequest} returns this
|
3239
3269
|
*/
|
3240
3270
|
proto.user.UserRequest.prototype.setCurrency = function(value) {
|
3241
|
-
return jspb.Message.setField(this,
|
3271
|
+
return jspb.Message.setField(this, 4, value);
|
3242
3272
|
};
|
3243
3273
|
|
3244
3274
|
|
@@ -3247,7 +3277,7 @@ proto.user.UserRequest.prototype.setCurrency = function(value) {
|
|
3247
3277
|
* @return {!proto.user.UserRequest} returns this
|
3248
3278
|
*/
|
3249
3279
|
proto.user.UserRequest.prototype.clearCurrency = function() {
|
3250
|
-
return jspb.Message.setField(this,
|
3280
|
+
return jspb.Message.setField(this, 4, undefined);
|
3251
3281
|
};
|
3252
3282
|
|
3253
3283
|
|
@@ -3256,16 +3286,16 @@ proto.user.UserRequest.prototype.clearCurrency = function() {
|
|
3256
3286
|
* @return {boolean}
|
3257
3287
|
*/
|
3258
3288
|
proto.user.UserRequest.prototype.hasCurrency = function() {
|
3259
|
-
return jspb.Message.getField(this,
|
3289
|
+
return jspb.Message.getField(this, 4) != null;
|
3260
3290
|
};
|
3261
3291
|
|
3262
3292
|
|
3263
3293
|
/**
|
3264
|
-
* optional string country =
|
3294
|
+
* optional string country = 5;
|
3265
3295
|
* @return {string}
|
3266
3296
|
*/
|
3267
3297
|
proto.user.UserRequest.prototype.getCountry = function() {
|
3268
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
3298
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
3269
3299
|
};
|
3270
3300
|
|
3271
3301
|
|
@@ -3274,7 +3304,7 @@ proto.user.UserRequest.prototype.getCountry = function() {
|
|
3274
3304
|
* @return {!proto.user.UserRequest} returns this
|
3275
3305
|
*/
|
3276
3306
|
proto.user.UserRequest.prototype.setCountry = function(value) {
|
3277
|
-
return jspb.Message.setField(this,
|
3307
|
+
return jspb.Message.setField(this, 5, value);
|
3278
3308
|
};
|
3279
3309
|
|
3280
3310
|
|
@@ -3283,7 +3313,7 @@ proto.user.UserRequest.prototype.setCountry = function(value) {
|
|
3283
3313
|
* @return {!proto.user.UserRequest} returns this
|
3284
3314
|
*/
|
3285
3315
|
proto.user.UserRequest.prototype.clearCountry = function() {
|
3286
|
-
return jspb.Message.setField(this,
|
3316
|
+
return jspb.Message.setField(this, 5, undefined);
|
3287
3317
|
};
|
3288
3318
|
|
3289
3319
|
|
@@ -3292,16 +3322,16 @@ proto.user.UserRequest.prototype.clearCountry = function() {
|
|
3292
3322
|
* @return {boolean}
|
3293
3323
|
*/
|
3294
3324
|
proto.user.UserRequest.prototype.hasCountry = function() {
|
3295
|
-
return jspb.Message.getField(this,
|
3325
|
+
return jspb.Message.getField(this, 5) != null;
|
3296
3326
|
};
|
3297
3327
|
|
3298
3328
|
|
3299
3329
|
/**
|
3300
|
-
* optional string city =
|
3330
|
+
* optional string city = 6;
|
3301
3331
|
* @return {string}
|
3302
3332
|
*/
|
3303
3333
|
proto.user.UserRequest.prototype.getCity = function() {
|
3304
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
3334
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
3305
3335
|
};
|
3306
3336
|
|
3307
3337
|
|
@@ -3310,7 +3340,7 @@ proto.user.UserRequest.prototype.getCity = function() {
|
|
3310
3340
|
* @return {!proto.user.UserRequest} returns this
|
3311
3341
|
*/
|
3312
3342
|
proto.user.UserRequest.prototype.setCity = function(value) {
|
3313
|
-
return jspb.Message.setField(this,
|
3343
|
+
return jspb.Message.setField(this, 6, value);
|
3314
3344
|
};
|
3315
3345
|
|
3316
3346
|
|
@@ -3319,7 +3349,7 @@ proto.user.UserRequest.prototype.setCity = function(value) {
|
|
3319
3349
|
* @return {!proto.user.UserRequest} returns this
|
3320
3350
|
*/
|
3321
3351
|
proto.user.UserRequest.prototype.clearCity = function() {
|
3322
|
-
return jspb.Message.setField(this,
|
3352
|
+
return jspb.Message.setField(this, 6, undefined);
|
3323
3353
|
};
|
3324
3354
|
|
3325
3355
|
|
@@ -3328,16 +3358,16 @@ proto.user.UserRequest.prototype.clearCity = function() {
|
|
3328
3358
|
* @return {boolean}
|
3329
3359
|
*/
|
3330
3360
|
proto.user.UserRequest.prototype.hasCity = function() {
|
3331
|
-
return jspb.Message.getField(this,
|
3361
|
+
return jspb.Message.getField(this, 6) != null;
|
3332
3362
|
};
|
3333
3363
|
|
3334
3364
|
|
3335
3365
|
/**
|
3336
|
-
* optional string first_name =
|
3366
|
+
* optional string first_name = 7;
|
3337
3367
|
* @return {string}
|
3338
3368
|
*/
|
3339
3369
|
proto.user.UserRequest.prototype.getFirstName = function() {
|
3340
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
3370
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
3341
3371
|
};
|
3342
3372
|
|
3343
3373
|
|
@@ -3346,7 +3376,7 @@ proto.user.UserRequest.prototype.getFirstName = function() {
|
|
3346
3376
|
* @return {!proto.user.UserRequest} returns this
|
3347
3377
|
*/
|
3348
3378
|
proto.user.UserRequest.prototype.setFirstName = function(value) {
|
3349
|
-
return jspb.Message.setField(this,
|
3379
|
+
return jspb.Message.setField(this, 7, value);
|
3350
3380
|
};
|
3351
3381
|
|
3352
3382
|
|
@@ -3355,7 +3385,7 @@ proto.user.UserRequest.prototype.setFirstName = function(value) {
|
|
3355
3385
|
* @return {!proto.user.UserRequest} returns this
|
3356
3386
|
*/
|
3357
3387
|
proto.user.UserRequest.prototype.clearFirstName = function() {
|
3358
|
-
return jspb.Message.setField(this,
|
3388
|
+
return jspb.Message.setField(this, 7, undefined);
|
3359
3389
|
};
|
3360
3390
|
|
3361
3391
|
|
@@ -3364,16 +3394,16 @@ proto.user.UserRequest.prototype.clearFirstName = function() {
|
|
3364
3394
|
* @return {boolean}
|
3365
3395
|
*/
|
3366
3396
|
proto.user.UserRequest.prototype.hasFirstName = function() {
|
3367
|
-
return jspb.Message.getField(this,
|
3397
|
+
return jspb.Message.getField(this, 7) != null;
|
3368
3398
|
};
|
3369
3399
|
|
3370
3400
|
|
3371
3401
|
/**
|
3372
|
-
* optional string last_name =
|
3402
|
+
* optional string last_name = 8;
|
3373
3403
|
* @return {string}
|
3374
3404
|
*/
|
3375
3405
|
proto.user.UserRequest.prototype.getLastName = function() {
|
3376
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
3406
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
3377
3407
|
};
|
3378
3408
|
|
3379
3409
|
|
@@ -3382,7 +3412,7 @@ proto.user.UserRequest.prototype.getLastName = function() {
|
|
3382
3412
|
* @return {!proto.user.UserRequest} returns this
|
3383
3413
|
*/
|
3384
3414
|
proto.user.UserRequest.prototype.setLastName = function(value) {
|
3385
|
-
return jspb.Message.setField(this,
|
3415
|
+
return jspb.Message.setField(this, 8, value);
|
3386
3416
|
};
|
3387
3417
|
|
3388
3418
|
|
@@ -3391,7 +3421,7 @@ proto.user.UserRequest.prototype.setLastName = function(value) {
|
|
3391
3421
|
* @return {!proto.user.UserRequest} returns this
|
3392
3422
|
*/
|
3393
3423
|
proto.user.UserRequest.prototype.clearLastName = function() {
|
3394
|
-
return jspb.Message.setField(this,
|
3424
|
+
return jspb.Message.setField(this, 8, undefined);
|
3395
3425
|
};
|
3396
3426
|
|
3397
3427
|
|
@@ -3400,16 +3430,16 @@ proto.user.UserRequest.prototype.clearLastName = function() {
|
|
3400
3430
|
* @return {boolean}
|
3401
3431
|
*/
|
3402
3432
|
proto.user.UserRequest.prototype.hasLastName = function() {
|
3403
|
-
return jspb.Message.getField(this,
|
3433
|
+
return jspb.Message.getField(this, 8) != null;
|
3404
3434
|
};
|
3405
3435
|
|
3406
3436
|
|
3407
3437
|
/**
|
3408
|
-
* optional string birthday =
|
3438
|
+
* optional string birthday = 9;
|
3409
3439
|
* @return {string}
|
3410
3440
|
*/
|
3411
3441
|
proto.user.UserRequest.prototype.getBirthday = function() {
|
3412
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
3442
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
3413
3443
|
};
|
3414
3444
|
|
3415
3445
|
|
@@ -3418,7 +3448,7 @@ proto.user.UserRequest.prototype.getBirthday = function() {
|
|
3418
3448
|
* @return {!proto.user.UserRequest} returns this
|
3419
3449
|
*/
|
3420
3450
|
proto.user.UserRequest.prototype.setBirthday = function(value) {
|
3421
|
-
return jspb.Message.setField(this,
|
3451
|
+
return jspb.Message.setField(this, 9, value);
|
3422
3452
|
};
|
3423
3453
|
|
3424
3454
|
|
@@ -3427,7 +3457,7 @@ proto.user.UserRequest.prototype.setBirthday = function(value) {
|
|
3427
3457
|
* @return {!proto.user.UserRequest} returns this
|
3428
3458
|
*/
|
3429
3459
|
proto.user.UserRequest.prototype.clearBirthday = function() {
|
3430
|
-
return jspb.Message.setField(this,
|
3460
|
+
return jspb.Message.setField(this, 9, undefined);
|
3431
3461
|
};
|
3432
3462
|
|
3433
3463
|
|
@@ -3436,16 +3466,16 @@ proto.user.UserRequest.prototype.clearBirthday = function() {
|
|
3436
3466
|
* @return {boolean}
|
3437
3467
|
*/
|
3438
3468
|
proto.user.UserRequest.prototype.hasBirthday = function() {
|
3439
|
-
return jspb.Message.getField(this,
|
3469
|
+
return jspb.Message.getField(this, 9) != null;
|
3440
3470
|
};
|
3441
3471
|
|
3442
3472
|
|
3443
3473
|
/**
|
3444
|
-
* optional string locale =
|
3474
|
+
* optional string locale = 10;
|
3445
3475
|
* @return {string}
|
3446
3476
|
*/
|
3447
3477
|
proto.user.UserRequest.prototype.getLocale = function() {
|
3448
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
3478
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 10, ""));
|
3449
3479
|
};
|
3450
3480
|
|
3451
3481
|
|
@@ -3454,7 +3484,7 @@ proto.user.UserRequest.prototype.getLocale = function() {
|
|
3454
3484
|
* @return {!proto.user.UserRequest} returns this
|
3455
3485
|
*/
|
3456
3486
|
proto.user.UserRequest.prototype.setLocale = function(value) {
|
3457
|
-
return jspb.Message.setField(this,
|
3487
|
+
return jspb.Message.setField(this, 10, value);
|
3458
3488
|
};
|
3459
3489
|
|
3460
3490
|
|
@@ -3463,7 +3493,7 @@ proto.user.UserRequest.prototype.setLocale = function(value) {
|
|
3463
3493
|
* @return {!proto.user.UserRequest} returns this
|
3464
3494
|
*/
|
3465
3495
|
proto.user.UserRequest.prototype.clearLocale = function() {
|
3466
|
-
return jspb.Message.setField(this,
|
3496
|
+
return jspb.Message.setField(this, 10, undefined);
|
3467
3497
|
};
|
3468
3498
|
|
3469
3499
|
|
@@ -3472,16 +3502,16 @@ proto.user.UserRequest.prototype.clearLocale = function() {
|
|
3472
3502
|
* @return {boolean}
|
3473
3503
|
*/
|
3474
3504
|
proto.user.UserRequest.prototype.hasLocale = function() {
|
3475
|
-
return jspb.Message.getField(this,
|
3505
|
+
return jspb.Message.getField(this, 10) != null;
|
3476
3506
|
};
|
3477
3507
|
|
3478
3508
|
|
3479
3509
|
/**
|
3480
|
-
* optional int32 role_id =
|
3510
|
+
* optional int32 role_id = 11;
|
3481
3511
|
* @return {number}
|
3482
3512
|
*/
|
3483
3513
|
proto.user.UserRequest.prototype.getRoleId = function() {
|
3484
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this,
|
3514
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 11, 0));
|
3485
3515
|
};
|
3486
3516
|
|
3487
3517
|
|
@@ -3490,7 +3520,7 @@ proto.user.UserRequest.prototype.getRoleId = function() {
|
|
3490
3520
|
* @return {!proto.user.UserRequest} returns this
|
3491
3521
|
*/
|
3492
3522
|
proto.user.UserRequest.prototype.setRoleId = function(value) {
|
3493
|
-
return jspb.Message.setField(this,
|
3523
|
+
return jspb.Message.setField(this, 11, value);
|
3494
3524
|
};
|
3495
3525
|
|
3496
3526
|
|
@@ -3499,7 +3529,7 @@ proto.user.UserRequest.prototype.setRoleId = function(value) {
|
|
3499
3529
|
* @return {!proto.user.UserRequest} returns this
|
3500
3530
|
*/
|
3501
3531
|
proto.user.UserRequest.prototype.clearRoleId = function() {
|
3502
|
-
return jspb.Message.setField(this,
|
3532
|
+
return jspb.Message.setField(this, 11, undefined);
|
3503
3533
|
};
|
3504
3534
|
|
3505
3535
|
|
@@ -3508,16 +3538,16 @@ proto.user.UserRequest.prototype.clearRoleId = function() {
|
|
3508
3538
|
* @return {boolean}
|
3509
3539
|
*/
|
3510
3540
|
proto.user.UserRequest.prototype.hasRoleId = function() {
|
3511
|
-
return jspb.Message.getField(this,
|
3541
|
+
return jspb.Message.getField(this, 11) != null;
|
3512
3542
|
};
|
3513
3543
|
|
3514
3544
|
|
3515
3545
|
/**
|
3516
|
-
* optional float balance_real =
|
3546
|
+
* optional float balance_real = 12;
|
3517
3547
|
* @return {number}
|
3518
3548
|
*/
|
3519
3549
|
proto.user.UserRequest.prototype.getBalanceReal = function() {
|
3520
|
-
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this,
|
3550
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 12, 0.0));
|
3521
3551
|
};
|
3522
3552
|
|
3523
3553
|
|
@@ -3526,7 +3556,7 @@ proto.user.UserRequest.prototype.getBalanceReal = function() {
|
|
3526
3556
|
* @return {!proto.user.UserRequest} returns this
|
3527
3557
|
*/
|
3528
3558
|
proto.user.UserRequest.prototype.setBalanceReal = function(value) {
|
3529
|
-
return jspb.Message.setField(this,
|
3559
|
+
return jspb.Message.setField(this, 12, value);
|
3530
3560
|
};
|
3531
3561
|
|
3532
3562
|
|
@@ -3535,7 +3565,7 @@ proto.user.UserRequest.prototype.setBalanceReal = function(value) {
|
|
3535
3565
|
* @return {!proto.user.UserRequest} returns this
|
3536
3566
|
*/
|
3537
3567
|
proto.user.UserRequest.prototype.clearBalanceReal = function() {
|
3538
|
-
return jspb.Message.setField(this,
|
3568
|
+
return jspb.Message.setField(this, 12, undefined);
|
3539
3569
|
};
|
3540
3570
|
|
3541
3571
|
|
@@ -3544,16 +3574,16 @@ proto.user.UserRequest.prototype.clearBalanceReal = function() {
|
|
3544
3574
|
* @return {boolean}
|
3545
3575
|
*/
|
3546
3576
|
proto.user.UserRequest.prototype.hasBalanceReal = function() {
|
3547
|
-
return jspb.Message.getField(this,
|
3577
|
+
return jspb.Message.getField(this, 12) != null;
|
3548
3578
|
};
|
3549
3579
|
|
3550
3580
|
|
3551
3581
|
/**
|
3552
|
-
* optional float balance_bonus =
|
3582
|
+
* optional float balance_bonus = 13;
|
3553
3583
|
* @return {number}
|
3554
3584
|
*/
|
3555
3585
|
proto.user.UserRequest.prototype.getBalanceBonus = function() {
|
3556
|
-
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this,
|
3586
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 13, 0.0));
|
3557
3587
|
};
|
3558
3588
|
|
3559
3589
|
|
@@ -3562,7 +3592,7 @@ proto.user.UserRequest.prototype.getBalanceBonus = function() {
|
|
3562
3592
|
* @return {!proto.user.UserRequest} returns this
|
3563
3593
|
*/
|
3564
3594
|
proto.user.UserRequest.prototype.setBalanceBonus = function(value) {
|
3565
|
-
return jspb.Message.setField(this,
|
3595
|
+
return jspb.Message.setField(this, 13, value);
|
3566
3596
|
};
|
3567
3597
|
|
3568
3598
|
|
@@ -3571,7 +3601,7 @@ proto.user.UserRequest.prototype.setBalanceBonus = function(value) {
|
|
3571
3601
|
* @return {!proto.user.UserRequest} returns this
|
3572
3602
|
*/
|
3573
3603
|
proto.user.UserRequest.prototype.clearBalanceBonus = function() {
|
3574
|
-
return jspb.Message.setField(this,
|
3604
|
+
return jspb.Message.setField(this, 13, undefined);
|
3575
3605
|
};
|
3576
3606
|
|
3577
3607
|
|
@@ -3580,16 +3610,16 @@ proto.user.UserRequest.prototype.clearBalanceBonus = function() {
|
|
3580
3610
|
* @return {boolean}
|
3581
3611
|
*/
|
3582
3612
|
proto.user.UserRequest.prototype.hasBalanceBonus = function() {
|
3583
|
-
return jspb.Message.getField(this,
|
3613
|
+
return jspb.Message.getField(this, 13) != null;
|
3584
3614
|
};
|
3585
3615
|
|
3586
3616
|
|
3587
3617
|
/**
|
3588
|
-
* optional string balance_type =
|
3618
|
+
* optional string balance_type = 14;
|
3589
3619
|
* @return {string}
|
3590
3620
|
*/
|
3591
3621
|
proto.user.UserRequest.prototype.getBalanceType = function() {
|
3592
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
3622
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 14, ""));
|
3593
3623
|
};
|
3594
3624
|
|
3595
3625
|
|
@@ -3598,7 +3628,7 @@ proto.user.UserRequest.prototype.getBalanceType = function() {
|
|
3598
3628
|
* @return {!proto.user.UserRequest} returns this
|
3599
3629
|
*/
|
3600
3630
|
proto.user.UserRequest.prototype.setBalanceType = function(value) {
|
3601
|
-
return jspb.Message.setField(this,
|
3631
|
+
return jspb.Message.setField(this, 14, value);
|
3602
3632
|
};
|
3603
3633
|
|
3604
3634
|
|
@@ -3607,7 +3637,7 @@ proto.user.UserRequest.prototype.setBalanceType = function(value) {
|
|
3607
3637
|
* @return {!proto.user.UserRequest} returns this
|
3608
3638
|
*/
|
3609
3639
|
proto.user.UserRequest.prototype.clearBalanceType = function() {
|
3610
|
-
return jspb.Message.setField(this,
|
3640
|
+
return jspb.Message.setField(this, 14, undefined);
|
3611
3641
|
};
|
3612
3642
|
|
3613
3643
|
|
@@ -3616,16 +3646,16 @@ proto.user.UserRequest.prototype.clearBalanceType = function() {
|
|
3616
3646
|
* @return {boolean}
|
3617
3647
|
*/
|
3618
3648
|
proto.user.UserRequest.prototype.hasBalanceType = function() {
|
3619
|
-
return jspb.Message.getField(this,
|
3649
|
+
return jspb.Message.getField(this, 14) != null;
|
3620
3650
|
};
|
3621
3651
|
|
3622
3652
|
|
3623
3653
|
/**
|
3624
|
-
* optional int32 affiliate_id =
|
3654
|
+
* optional int32 affiliate_id = 15;
|
3625
3655
|
* @return {number}
|
3626
3656
|
*/
|
3627
3657
|
proto.user.UserRequest.prototype.getAffiliateId = function() {
|
3628
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this,
|
3658
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 15, 0));
|
3629
3659
|
};
|
3630
3660
|
|
3631
3661
|
|
@@ -3634,7 +3664,7 @@ proto.user.UserRequest.prototype.getAffiliateId = function() {
|
|
3634
3664
|
* @return {!proto.user.UserRequest} returns this
|
3635
3665
|
*/
|
3636
3666
|
proto.user.UserRequest.prototype.setAffiliateId = function(value) {
|
3637
|
-
return jspb.Message.setField(this,
|
3667
|
+
return jspb.Message.setField(this, 15, value);
|
3638
3668
|
};
|
3639
3669
|
|
3640
3670
|
|
@@ -3643,7 +3673,7 @@ proto.user.UserRequest.prototype.setAffiliateId = function(value) {
|
|
3643
3673
|
* @return {!proto.user.UserRequest} returns this
|
3644
3674
|
*/
|
3645
3675
|
proto.user.UserRequest.prototype.clearAffiliateId = function() {
|
3646
|
-
return jspb.Message.setField(this,
|
3676
|
+
return jspb.Message.setField(this, 15, undefined);
|
3647
3677
|
};
|
3648
3678
|
|
3649
3679
|
|
@@ -3652,16 +3682,16 @@ proto.user.UserRequest.prototype.clearAffiliateId = function() {
|
|
3652
3682
|
* @return {boolean}
|
3653
3683
|
*/
|
3654
3684
|
proto.user.UserRequest.prototype.hasAffiliateId = function() {
|
3655
|
-
return jspb.Message.getField(this,
|
3685
|
+
return jspb.Message.getField(this, 15) != null;
|
3656
3686
|
};
|
3657
3687
|
|
3658
3688
|
|
3659
3689
|
/**
|
3660
|
-
* optional string timezone =
|
3690
|
+
* optional string timezone = 16;
|
3661
3691
|
* @return {string}
|
3662
3692
|
*/
|
3663
3693
|
proto.user.UserRequest.prototype.getTimezone = function() {
|
3664
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
3694
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 16, ""));
|
3665
3695
|
};
|
3666
3696
|
|
3667
3697
|
|
@@ -3670,7 +3700,7 @@ proto.user.UserRequest.prototype.getTimezone = function() {
|
|
3670
3700
|
* @return {!proto.user.UserRequest} returns this
|
3671
3701
|
*/
|
3672
3702
|
proto.user.UserRequest.prototype.setTimezone = function(value) {
|
3673
|
-
return jspb.Message.setField(this,
|
3703
|
+
return jspb.Message.setField(this, 16, value);
|
3674
3704
|
};
|
3675
3705
|
|
3676
3706
|
|
@@ -3679,7 +3709,7 @@ proto.user.UserRequest.prototype.setTimezone = function(value) {
|
|
3679
3709
|
* @return {!proto.user.UserRequest} returns this
|
3680
3710
|
*/
|
3681
3711
|
proto.user.UserRequest.prototype.clearTimezone = function() {
|
3682
|
-
return jspb.Message.setField(this,
|
3712
|
+
return jspb.Message.setField(this, 16, undefined);
|
3683
3713
|
};
|
3684
3714
|
|
3685
3715
|
|
@@ -3688,16 +3718,16 @@ proto.user.UserRequest.prototype.clearTimezone = function() {
|
|
3688
3718
|
* @return {boolean}
|
3689
3719
|
*/
|
3690
3720
|
proto.user.UserRequest.prototype.hasTimezone = function() {
|
3691
|
-
return jspb.Message.getField(this,
|
3721
|
+
return jspb.Message.getField(this, 16) != null;
|
3692
3722
|
};
|
3693
3723
|
|
3694
3724
|
|
3695
3725
|
/**
|
3696
|
-
* optional int32 risk_status_id =
|
3726
|
+
* optional int32 risk_status_id = 17;
|
3697
3727
|
* @return {number}
|
3698
3728
|
*/
|
3699
3729
|
proto.user.UserRequest.prototype.getRiskStatusId = function() {
|
3700
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this,
|
3730
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 17, 0));
|
3701
3731
|
};
|
3702
3732
|
|
3703
3733
|
|
@@ -3706,7 +3736,7 @@ proto.user.UserRequest.prototype.getRiskStatusId = function() {
|
|
3706
3736
|
* @return {!proto.user.UserRequest} returns this
|
3707
3737
|
*/
|
3708
3738
|
proto.user.UserRequest.prototype.setRiskStatusId = function(value) {
|
3709
|
-
return jspb.Message.setField(this,
|
3739
|
+
return jspb.Message.setField(this, 17, value);
|
3710
3740
|
};
|
3711
3741
|
|
3712
3742
|
|
@@ -3715,7 +3745,7 @@ proto.user.UserRequest.prototype.setRiskStatusId = function(value) {
|
|
3715
3745
|
* @return {!proto.user.UserRequest} returns this
|
3716
3746
|
*/
|
3717
3747
|
proto.user.UserRequest.prototype.clearRiskStatusId = function() {
|
3718
|
-
return jspb.Message.setField(this,
|
3748
|
+
return jspb.Message.setField(this, 17, undefined);
|
3719
3749
|
};
|
3720
3750
|
|
3721
3751
|
|
@@ -3724,16 +3754,16 @@ proto.user.UserRequest.prototype.clearRiskStatusId = function() {
|
|
3724
3754
|
* @return {boolean}
|
3725
3755
|
*/
|
3726
3756
|
proto.user.UserRequest.prototype.hasRiskStatusId = function() {
|
3727
|
-
return jspb.Message.getField(this,
|
3757
|
+
return jspb.Message.getField(this, 17) != null;
|
3728
3758
|
};
|
3729
3759
|
|
3730
3760
|
|
3731
3761
|
/**
|
3732
|
-
* optional int32 category_id =
|
3762
|
+
* optional int32 category_id = 18;
|
3733
3763
|
* @return {number}
|
3734
3764
|
*/
|
3735
3765
|
proto.user.UserRequest.prototype.getCategoryId = function() {
|
3736
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this,
|
3766
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 18, 0));
|
3737
3767
|
};
|
3738
3768
|
|
3739
3769
|
|
@@ -3742,7 +3772,7 @@ proto.user.UserRequest.prototype.getCategoryId = function() {
|
|
3742
3772
|
* @return {!proto.user.UserRequest} returns this
|
3743
3773
|
*/
|
3744
3774
|
proto.user.UserRequest.prototype.setCategoryId = function(value) {
|
3745
|
-
return jspb.Message.setField(this,
|
3775
|
+
return jspb.Message.setField(this, 18, value);
|
3746
3776
|
};
|
3747
3777
|
|
3748
3778
|
|
@@ -3751,7 +3781,7 @@ proto.user.UserRequest.prototype.setCategoryId = function(value) {
|
|
3751
3781
|
* @return {!proto.user.UserRequest} returns this
|
3752
3782
|
*/
|
3753
3783
|
proto.user.UserRequest.prototype.clearCategoryId = function() {
|
3754
|
-
return jspb.Message.setField(this,
|
3784
|
+
return jspb.Message.setField(this, 18, undefined);
|
3755
3785
|
};
|
3756
3786
|
|
3757
3787
|
|
@@ -3760,16 +3790,16 @@ proto.user.UserRequest.prototype.clearCategoryId = function() {
|
|
3760
3790
|
* @return {boolean}
|
3761
3791
|
*/
|
3762
3792
|
proto.user.UserRequest.prototype.hasCategoryId = function() {
|
3763
|
-
return jspb.Message.getField(this,
|
3793
|
+
return jspb.Message.getField(this, 18) != null;
|
3764
3794
|
};
|
3765
3795
|
|
3766
3796
|
|
3767
3797
|
/**
|
3768
|
-
* optional int32 block_user =
|
3798
|
+
* optional int32 block_user = 19;
|
3769
3799
|
* @return {number}
|
3770
3800
|
*/
|
3771
3801
|
proto.user.UserRequest.prototype.getBlockUser = function() {
|
3772
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this,
|
3802
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 19, 0));
|
3773
3803
|
};
|
3774
3804
|
|
3775
3805
|
|
@@ -3778,7 +3808,7 @@ proto.user.UserRequest.prototype.getBlockUser = function() {
|
|
3778
3808
|
* @return {!proto.user.UserRequest} returns this
|
3779
3809
|
*/
|
3780
3810
|
proto.user.UserRequest.prototype.setBlockUser = function(value) {
|
3781
|
-
return jspb.Message.setField(this,
|
3811
|
+
return jspb.Message.setField(this, 19, value);
|
3782
3812
|
};
|
3783
3813
|
|
3784
3814
|
|
@@ -3787,7 +3817,7 @@ proto.user.UserRequest.prototype.setBlockUser = function(value) {
|
|
3787
3817
|
* @return {!proto.user.UserRequest} returns this
|
3788
3818
|
*/
|
3789
3819
|
proto.user.UserRequest.prototype.clearBlockUser = function() {
|
3790
|
-
return jspb.Message.setField(this,
|
3820
|
+
return jspb.Message.setField(this, 19, undefined);
|
3791
3821
|
};
|
3792
3822
|
|
3793
3823
|
|
@@ -3796,16 +3826,16 @@ proto.user.UserRequest.prototype.clearBlockUser = function() {
|
|
3796
3826
|
* @return {boolean}
|
3797
3827
|
*/
|
3798
3828
|
proto.user.UserRequest.prototype.hasBlockUser = function() {
|
3799
|
-
return jspb.Message.getField(this,
|
3829
|
+
return jspb.Message.getField(this, 19) != null;
|
3800
3830
|
};
|
3801
3831
|
|
3802
3832
|
|
3803
3833
|
/**
|
3804
|
-
* optional int32 block_deposit =
|
3834
|
+
* optional int32 block_deposit = 20;
|
3805
3835
|
* @return {number}
|
3806
3836
|
*/
|
3807
3837
|
proto.user.UserRequest.prototype.getBlockDeposit = function() {
|
3808
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this,
|
3838
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 20, 0));
|
3809
3839
|
};
|
3810
3840
|
|
3811
3841
|
|
@@ -3814,7 +3844,7 @@ proto.user.UserRequest.prototype.getBlockDeposit = function() {
|
|
3814
3844
|
* @return {!proto.user.UserRequest} returns this
|
3815
3845
|
*/
|
3816
3846
|
proto.user.UserRequest.prototype.setBlockDeposit = function(value) {
|
3817
|
-
return jspb.Message.setField(this,
|
3847
|
+
return jspb.Message.setField(this, 20, value);
|
3818
3848
|
};
|
3819
3849
|
|
3820
3850
|
|
@@ -3823,7 +3853,7 @@ proto.user.UserRequest.prototype.setBlockDeposit = function(value) {
|
|
3823
3853
|
* @return {!proto.user.UserRequest} returns this
|
3824
3854
|
*/
|
3825
3855
|
proto.user.UserRequest.prototype.clearBlockDeposit = function() {
|
3826
|
-
return jspb.Message.setField(this,
|
3856
|
+
return jspb.Message.setField(this, 20, undefined);
|
3827
3857
|
};
|
3828
3858
|
|
3829
3859
|
|
@@ -3832,16 +3862,16 @@ proto.user.UserRequest.prototype.clearBlockDeposit = function() {
|
|
3832
3862
|
* @return {boolean}
|
3833
3863
|
*/
|
3834
3864
|
proto.user.UserRequest.prototype.hasBlockDeposit = function() {
|
3835
|
-
return jspb.Message.getField(this,
|
3865
|
+
return jspb.Message.getField(this, 20) != null;
|
3836
3866
|
};
|
3837
3867
|
|
3838
3868
|
|
3839
3869
|
/**
|
3840
|
-
* optional int32 block_bet =
|
3870
|
+
* optional int32 block_bet = 21;
|
3841
3871
|
* @return {number}
|
3842
3872
|
*/
|
3843
3873
|
proto.user.UserRequest.prototype.getBlockBet = function() {
|
3844
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this,
|
3874
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 21, 0));
|
3845
3875
|
};
|
3846
3876
|
|
3847
3877
|
|
@@ -3850,7 +3880,7 @@ proto.user.UserRequest.prototype.getBlockBet = function() {
|
|
3850
3880
|
* @return {!proto.user.UserRequest} returns this
|
3851
3881
|
*/
|
3852
3882
|
proto.user.UserRequest.prototype.setBlockBet = function(value) {
|
3853
|
-
return jspb.Message.setField(this,
|
3883
|
+
return jspb.Message.setField(this, 21, value);
|
3854
3884
|
};
|
3855
3885
|
|
3856
3886
|
|
@@ -3859,7 +3889,7 @@ proto.user.UserRequest.prototype.setBlockBet = function(value) {
|
|
3859
3889
|
* @return {!proto.user.UserRequest} returns this
|
3860
3890
|
*/
|
3861
3891
|
proto.user.UserRequest.prototype.clearBlockBet = function() {
|
3862
|
-
return jspb.Message.setField(this,
|
3892
|
+
return jspb.Message.setField(this, 21, undefined);
|
3863
3893
|
};
|
3864
3894
|
|
3865
3895
|
|
@@ -3868,7 +3898,7 @@ proto.user.UserRequest.prototype.clearBlockBet = function() {
|
|
3868
3898
|
* @return {boolean}
|
3869
3899
|
*/
|
3870
3900
|
proto.user.UserRequest.prototype.hasBlockBet = function() {
|
3871
|
-
return jspb.Message.getField(this,
|
3901
|
+
return jspb.Message.getField(this, 21) != null;
|
3872
3902
|
};
|
3873
3903
|
|
3874
3904
|
|
@@ -3927,7 +3957,10 @@ proto.user.UserDataResponse.toObject = function(includeInstance, msg) {
|
|
3927
3957
|
category: jspb.Message.getFieldWithDefault(msg, 21, ""),
|
3928
3958
|
created: jspb.Message.getFieldWithDefault(msg, 22, ""),
|
3929
3959
|
loyalty: (f = msg.getLoyalty()) && proto.user.UserLoyaltyItem.toObject(includeInstance, f),
|
3930
|
-
notificationsCount: jspb.Message.getFieldWithDefault(msg, 24, 0)
|
3960
|
+
notificationsCount: jspb.Message.getFieldWithDefault(msg, 24, 0),
|
3961
|
+
blockUser: jspb.Message.getFieldWithDefault(msg, 25, 0),
|
3962
|
+
blockDeposit: jspb.Message.getFieldWithDefault(msg, 26, 0),
|
3963
|
+
blockBet: jspb.Message.getFieldWithDefault(msg, 27, 0)
|
3931
3964
|
};
|
3932
3965
|
|
3933
3966
|
if (includeInstance) {
|
@@ -4061,6 +4094,18 @@ proto.user.UserDataResponse.deserializeBinaryFromReader = function(msg, reader)
|
|
4061
4094
|
var value = /** @type {number} */ (reader.readInt32());
|
4062
4095
|
msg.setNotificationsCount(value);
|
4063
4096
|
break;
|
4097
|
+
case 25:
|
4098
|
+
var value = /** @type {number} */ (reader.readInt32());
|
4099
|
+
msg.setBlockUser(value);
|
4100
|
+
break;
|
4101
|
+
case 26:
|
4102
|
+
var value = /** @type {number} */ (reader.readInt32());
|
4103
|
+
msg.setBlockDeposit(value);
|
4104
|
+
break;
|
4105
|
+
case 27:
|
4106
|
+
var value = /** @type {number} */ (reader.readInt32());
|
4107
|
+
msg.setBlockBet(value);
|
4108
|
+
break;
|
4064
4109
|
default:
|
4065
4110
|
reader.skipField();
|
4066
4111
|
break;
|
@@ -4259,6 +4304,27 @@ proto.user.UserDataResponse.serializeBinaryToWriter = function(message, writer)
|
|
4259
4304
|
f
|
4260
4305
|
);
|
4261
4306
|
}
|
4307
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 25));
|
4308
|
+
if (f != null) {
|
4309
|
+
writer.writeInt32(
|
4310
|
+
25,
|
4311
|
+
f
|
4312
|
+
);
|
4313
|
+
}
|
4314
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 26));
|
4315
|
+
if (f != null) {
|
4316
|
+
writer.writeInt32(
|
4317
|
+
26,
|
4318
|
+
f
|
4319
|
+
);
|
4320
|
+
}
|
4321
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 27));
|
4322
|
+
if (f != null) {
|
4323
|
+
writer.writeInt32(
|
4324
|
+
27,
|
4325
|
+
f
|
4326
|
+
);
|
4327
|
+
}
|
4262
4328
|
};
|
4263
4329
|
|
4264
4330
|
|
@@ -5091,6 +5157,114 @@ proto.user.UserDataResponse.prototype.hasNotificationsCount = function() {
|
|
5091
5157
|
};
|
5092
5158
|
|
5093
5159
|
|
5160
|
+
/**
|
5161
|
+
* optional int32 block_user = 25;
|
5162
|
+
* @return {number}
|
5163
|
+
*/
|
5164
|
+
proto.user.UserDataResponse.prototype.getBlockUser = function() {
|
5165
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 25, 0));
|
5166
|
+
};
|
5167
|
+
|
5168
|
+
|
5169
|
+
/**
|
5170
|
+
* @param {number} value
|
5171
|
+
* @return {!proto.user.UserDataResponse} returns this
|
5172
|
+
*/
|
5173
|
+
proto.user.UserDataResponse.prototype.setBlockUser = function(value) {
|
5174
|
+
return jspb.Message.setField(this, 25, value);
|
5175
|
+
};
|
5176
|
+
|
5177
|
+
|
5178
|
+
/**
|
5179
|
+
* Clears the field making it undefined.
|
5180
|
+
* @return {!proto.user.UserDataResponse} returns this
|
5181
|
+
*/
|
5182
|
+
proto.user.UserDataResponse.prototype.clearBlockUser = function() {
|
5183
|
+
return jspb.Message.setField(this, 25, undefined);
|
5184
|
+
};
|
5185
|
+
|
5186
|
+
|
5187
|
+
/**
|
5188
|
+
* Returns whether this field is set.
|
5189
|
+
* @return {boolean}
|
5190
|
+
*/
|
5191
|
+
proto.user.UserDataResponse.prototype.hasBlockUser = function() {
|
5192
|
+
return jspb.Message.getField(this, 25) != null;
|
5193
|
+
};
|
5194
|
+
|
5195
|
+
|
5196
|
+
/**
|
5197
|
+
* optional int32 block_deposit = 26;
|
5198
|
+
* @return {number}
|
5199
|
+
*/
|
5200
|
+
proto.user.UserDataResponse.prototype.getBlockDeposit = function() {
|
5201
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 26, 0));
|
5202
|
+
};
|
5203
|
+
|
5204
|
+
|
5205
|
+
/**
|
5206
|
+
* @param {number} value
|
5207
|
+
* @return {!proto.user.UserDataResponse} returns this
|
5208
|
+
*/
|
5209
|
+
proto.user.UserDataResponse.prototype.setBlockDeposit = function(value) {
|
5210
|
+
return jspb.Message.setField(this, 26, value);
|
5211
|
+
};
|
5212
|
+
|
5213
|
+
|
5214
|
+
/**
|
5215
|
+
* Clears the field making it undefined.
|
5216
|
+
* @return {!proto.user.UserDataResponse} returns this
|
5217
|
+
*/
|
5218
|
+
proto.user.UserDataResponse.prototype.clearBlockDeposit = function() {
|
5219
|
+
return jspb.Message.setField(this, 26, undefined);
|
5220
|
+
};
|
5221
|
+
|
5222
|
+
|
5223
|
+
/**
|
5224
|
+
* Returns whether this field is set.
|
5225
|
+
* @return {boolean}
|
5226
|
+
*/
|
5227
|
+
proto.user.UserDataResponse.prototype.hasBlockDeposit = function() {
|
5228
|
+
return jspb.Message.getField(this, 26) != null;
|
5229
|
+
};
|
5230
|
+
|
5231
|
+
|
5232
|
+
/**
|
5233
|
+
* optional int32 block_bet = 27;
|
5234
|
+
* @return {number}
|
5235
|
+
*/
|
5236
|
+
proto.user.UserDataResponse.prototype.getBlockBet = function() {
|
5237
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 27, 0));
|
5238
|
+
};
|
5239
|
+
|
5240
|
+
|
5241
|
+
/**
|
5242
|
+
* @param {number} value
|
5243
|
+
* @return {!proto.user.UserDataResponse} returns this
|
5244
|
+
*/
|
5245
|
+
proto.user.UserDataResponse.prototype.setBlockBet = function(value) {
|
5246
|
+
return jspb.Message.setField(this, 27, value);
|
5247
|
+
};
|
5248
|
+
|
5249
|
+
|
5250
|
+
/**
|
5251
|
+
* Clears the field making it undefined.
|
5252
|
+
* @return {!proto.user.UserDataResponse} returns this
|
5253
|
+
*/
|
5254
|
+
proto.user.UserDataResponse.prototype.clearBlockBet = function() {
|
5255
|
+
return jspb.Message.setField(this, 27, undefined);
|
5256
|
+
};
|
5257
|
+
|
5258
|
+
|
5259
|
+
/**
|
5260
|
+
* Returns whether this field is set.
|
5261
|
+
* @return {boolean}
|
5262
|
+
*/
|
5263
|
+
proto.user.UserDataResponse.prototype.hasBlockBet = function() {
|
5264
|
+
return jspb.Message.getField(this, 27) != null;
|
5265
|
+
};
|
5266
|
+
|
5267
|
+
|
5094
5268
|
|
5095
5269
|
/**
|
5096
5270
|
* List of repeated fields within this message type.
|