protobuf-platform 1.2.462 → 1.2.465
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/bonus/bonus.proto +14 -0
- package/bonus/bonus_pb.js +448 -4
- package/game/game.proto +15 -0
- package/game/game_grpc_pb.js +34 -0
- package/game/game_pb.js +684 -0
- package/package.json +1 -1
package/bonus/bonus.proto
CHANGED
|
@@ -150,6 +150,16 @@ message BonusItemRequest {
|
|
|
150
150
|
optional string category = 22;
|
|
151
151
|
optional string mobile_file_name = 23;
|
|
152
152
|
optional string mobile_file_type = 24;
|
|
153
|
+
repeated int32 wager_games_list_ids = 25;
|
|
154
|
+
repeated int32 excluded_segment_ids = 26;
|
|
155
|
+
// Business-allowed: "any" | "real" | "bonus"
|
|
156
|
+
optional string wager_balance_priority = 27;
|
|
157
|
+
// Update: true = replace segment_ids; empty segment_ids with true = clear; absent/false = preserve.
|
|
158
|
+
optional bool segment_ids_provided = 28;
|
|
159
|
+
// Update: true = replace wager_games_list_ids; empty with true = clear; absent/false = preserve.
|
|
160
|
+
optional bool wager_games_list_ids_provided = 29;
|
|
161
|
+
// Update: true = replace excluded_segment_ids; empty with true = clear; absent/false = preserve.
|
|
162
|
+
optional bool excluded_segment_ids_provided = 30;
|
|
153
163
|
}
|
|
154
164
|
message GetBonusRequest {
|
|
155
165
|
int32 id = 1;
|
|
@@ -208,6 +218,10 @@ message BonusItem {
|
|
|
208
218
|
optional string category = 36;
|
|
209
219
|
optional string mobile_image = 37;
|
|
210
220
|
optional string mobile_image_cdn = 38;
|
|
221
|
+
repeated int32 wager_games_list_ids = 39;
|
|
222
|
+
repeated int32 excluded_segment_ids = 40;
|
|
223
|
+
// Business-allowed: "any" | "real" | "bonus"
|
|
224
|
+
optional string wager_balance_priority = 41;
|
|
211
225
|
}
|
|
212
226
|
message BonusItemsResponse {
|
|
213
227
|
repeated BonusItem items = 1;
|
package/bonus/bonus_pb.js
CHANGED
|
@@ -4950,7 +4950,7 @@ proto.bonus.BetsRange.prototype.setMax = function(value) {
|
|
|
4950
4950
|
* @private {!Array<number>}
|
|
4951
4951
|
* @const
|
|
4952
4952
|
*/
|
|
4953
|
-
proto.bonus.BonusItemRequest.repeatedFields_ = [21];
|
|
4953
|
+
proto.bonus.BonusItemRequest.repeatedFields_ = [21,25,26];
|
|
4954
4954
|
|
|
4955
4955
|
|
|
4956
4956
|
|
|
@@ -5006,7 +5006,13 @@ proto.bonus.BonusItemRequest.toObject = function(includeInstance, msg) {
|
|
|
5006
5006
|
segmentIdsList: (f = jspb.Message.getRepeatedField(msg, 21)) == null ? undefined : f,
|
|
5007
5007
|
category: jspb.Message.getFieldWithDefault(msg, 22, ""),
|
|
5008
5008
|
mobileFileName: jspb.Message.getFieldWithDefault(msg, 23, ""),
|
|
5009
|
-
mobileFileType: jspb.Message.getFieldWithDefault(msg, 24, "")
|
|
5009
|
+
mobileFileType: jspb.Message.getFieldWithDefault(msg, 24, ""),
|
|
5010
|
+
wagerGamesListIdsList: (f = jspb.Message.getRepeatedField(msg, 25)) == null ? undefined : f,
|
|
5011
|
+
excludedSegmentIdsList: (f = jspb.Message.getRepeatedField(msg, 26)) == null ? undefined : f,
|
|
5012
|
+
wagerBalancePriority: jspb.Message.getFieldWithDefault(msg, 27, ""),
|
|
5013
|
+
segmentIdsProvided: jspb.Message.getBooleanFieldWithDefault(msg, 28, false),
|
|
5014
|
+
wagerGamesListIdsProvided: jspb.Message.getBooleanFieldWithDefault(msg, 29, false),
|
|
5015
|
+
excludedSegmentIdsProvided: jspb.Message.getBooleanFieldWithDefault(msg, 30, false)
|
|
5010
5016
|
};
|
|
5011
5017
|
|
|
5012
5018
|
if (includeInstance) {
|
|
@@ -5141,6 +5147,34 @@ proto.bonus.BonusItemRequest.deserializeBinaryFromReader = function(msg, reader)
|
|
|
5141
5147
|
var value = /** @type {string} */ (reader.readString());
|
|
5142
5148
|
msg.setMobileFileType(value);
|
|
5143
5149
|
break;
|
|
5150
|
+
case 25:
|
|
5151
|
+
var values = /** @type {!Array<number>} */ (reader.isDelimited() ? reader.readPackedInt32() : [reader.readInt32()]);
|
|
5152
|
+
for (var i = 0; i < values.length; i++) {
|
|
5153
|
+
msg.addWagerGamesListIds(values[i]);
|
|
5154
|
+
}
|
|
5155
|
+
break;
|
|
5156
|
+
case 26:
|
|
5157
|
+
var values = /** @type {!Array<number>} */ (reader.isDelimited() ? reader.readPackedInt32() : [reader.readInt32()]);
|
|
5158
|
+
for (var i = 0; i < values.length; i++) {
|
|
5159
|
+
msg.addExcludedSegmentIds(values[i]);
|
|
5160
|
+
}
|
|
5161
|
+
break;
|
|
5162
|
+
case 27:
|
|
5163
|
+
var value = /** @type {string} */ (reader.readString());
|
|
5164
|
+
msg.setWagerBalancePriority(value);
|
|
5165
|
+
break;
|
|
5166
|
+
case 28:
|
|
5167
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
5168
|
+
msg.setSegmentIdsProvided(value);
|
|
5169
|
+
break;
|
|
5170
|
+
case 29:
|
|
5171
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
5172
|
+
msg.setWagerGamesListIdsProvided(value);
|
|
5173
|
+
break;
|
|
5174
|
+
case 30:
|
|
5175
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
5176
|
+
msg.setExcludedSegmentIdsProvided(value);
|
|
5177
|
+
break;
|
|
5144
5178
|
default:
|
|
5145
5179
|
reader.skipField();
|
|
5146
5180
|
break;
|
|
@@ -5338,6 +5372,48 @@ proto.bonus.BonusItemRequest.serializeBinaryToWriter = function(message, writer)
|
|
|
5338
5372
|
f
|
|
5339
5373
|
);
|
|
5340
5374
|
}
|
|
5375
|
+
f = message.getWagerGamesListIdsList();
|
|
5376
|
+
if (f.length > 0) {
|
|
5377
|
+
writer.writePackedInt32(
|
|
5378
|
+
25,
|
|
5379
|
+
f
|
|
5380
|
+
);
|
|
5381
|
+
}
|
|
5382
|
+
f = message.getExcludedSegmentIdsList();
|
|
5383
|
+
if (f.length > 0) {
|
|
5384
|
+
writer.writePackedInt32(
|
|
5385
|
+
26,
|
|
5386
|
+
f
|
|
5387
|
+
);
|
|
5388
|
+
}
|
|
5389
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 27));
|
|
5390
|
+
if (f != null) {
|
|
5391
|
+
writer.writeString(
|
|
5392
|
+
27,
|
|
5393
|
+
f
|
|
5394
|
+
);
|
|
5395
|
+
}
|
|
5396
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 28));
|
|
5397
|
+
if (f != null) {
|
|
5398
|
+
writer.writeBool(
|
|
5399
|
+
28,
|
|
5400
|
+
f
|
|
5401
|
+
);
|
|
5402
|
+
}
|
|
5403
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 29));
|
|
5404
|
+
if (f != null) {
|
|
5405
|
+
writer.writeBool(
|
|
5406
|
+
29,
|
|
5407
|
+
f
|
|
5408
|
+
);
|
|
5409
|
+
}
|
|
5410
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 30));
|
|
5411
|
+
if (f != null) {
|
|
5412
|
+
writer.writeBool(
|
|
5413
|
+
30,
|
|
5414
|
+
f
|
|
5415
|
+
);
|
|
5416
|
+
}
|
|
5341
5417
|
};
|
|
5342
5418
|
|
|
5343
5419
|
|
|
@@ -6206,6 +6282,224 @@ proto.bonus.BonusItemRequest.prototype.hasMobileFileType = function() {
|
|
|
6206
6282
|
};
|
|
6207
6283
|
|
|
6208
6284
|
|
|
6285
|
+
/**
|
|
6286
|
+
* repeated int32 wager_games_list_ids = 25;
|
|
6287
|
+
* @return {!Array<number>}
|
|
6288
|
+
*/
|
|
6289
|
+
proto.bonus.BonusItemRequest.prototype.getWagerGamesListIdsList = function() {
|
|
6290
|
+
return /** @type {!Array<number>} */ (jspb.Message.getRepeatedField(this, 25));
|
|
6291
|
+
};
|
|
6292
|
+
|
|
6293
|
+
|
|
6294
|
+
/**
|
|
6295
|
+
* @param {!Array<number>} value
|
|
6296
|
+
* @return {!proto.bonus.BonusItemRequest} returns this
|
|
6297
|
+
*/
|
|
6298
|
+
proto.bonus.BonusItemRequest.prototype.setWagerGamesListIdsList = function(value) {
|
|
6299
|
+
return jspb.Message.setField(this, 25, value || []);
|
|
6300
|
+
};
|
|
6301
|
+
|
|
6302
|
+
|
|
6303
|
+
/**
|
|
6304
|
+
* @param {number} value
|
|
6305
|
+
* @param {number=} opt_index
|
|
6306
|
+
* @return {!proto.bonus.BonusItemRequest} returns this
|
|
6307
|
+
*/
|
|
6308
|
+
proto.bonus.BonusItemRequest.prototype.addWagerGamesListIds = function(value, opt_index) {
|
|
6309
|
+
return jspb.Message.addToRepeatedField(this, 25, value, opt_index);
|
|
6310
|
+
};
|
|
6311
|
+
|
|
6312
|
+
|
|
6313
|
+
/**
|
|
6314
|
+
* Clears the list making it empty but non-null.
|
|
6315
|
+
* @return {!proto.bonus.BonusItemRequest} returns this
|
|
6316
|
+
*/
|
|
6317
|
+
proto.bonus.BonusItemRequest.prototype.clearWagerGamesListIdsList = function() {
|
|
6318
|
+
return this.setWagerGamesListIdsList([]);
|
|
6319
|
+
};
|
|
6320
|
+
|
|
6321
|
+
|
|
6322
|
+
/**
|
|
6323
|
+
* repeated int32 excluded_segment_ids = 26;
|
|
6324
|
+
* @return {!Array<number>}
|
|
6325
|
+
*/
|
|
6326
|
+
proto.bonus.BonusItemRequest.prototype.getExcludedSegmentIdsList = function() {
|
|
6327
|
+
return /** @type {!Array<number>} */ (jspb.Message.getRepeatedField(this, 26));
|
|
6328
|
+
};
|
|
6329
|
+
|
|
6330
|
+
|
|
6331
|
+
/**
|
|
6332
|
+
* @param {!Array<number>} value
|
|
6333
|
+
* @return {!proto.bonus.BonusItemRequest} returns this
|
|
6334
|
+
*/
|
|
6335
|
+
proto.bonus.BonusItemRequest.prototype.setExcludedSegmentIdsList = function(value) {
|
|
6336
|
+
return jspb.Message.setField(this, 26, value || []);
|
|
6337
|
+
};
|
|
6338
|
+
|
|
6339
|
+
|
|
6340
|
+
/**
|
|
6341
|
+
* @param {number} value
|
|
6342
|
+
* @param {number=} opt_index
|
|
6343
|
+
* @return {!proto.bonus.BonusItemRequest} returns this
|
|
6344
|
+
*/
|
|
6345
|
+
proto.bonus.BonusItemRequest.prototype.addExcludedSegmentIds = function(value, opt_index) {
|
|
6346
|
+
return jspb.Message.addToRepeatedField(this, 26, value, opt_index);
|
|
6347
|
+
};
|
|
6348
|
+
|
|
6349
|
+
|
|
6350
|
+
/**
|
|
6351
|
+
* Clears the list making it empty but non-null.
|
|
6352
|
+
* @return {!proto.bonus.BonusItemRequest} returns this
|
|
6353
|
+
*/
|
|
6354
|
+
proto.bonus.BonusItemRequest.prototype.clearExcludedSegmentIdsList = function() {
|
|
6355
|
+
return this.setExcludedSegmentIdsList([]);
|
|
6356
|
+
};
|
|
6357
|
+
|
|
6358
|
+
|
|
6359
|
+
/**
|
|
6360
|
+
* optional string wager_balance_priority = 27;
|
|
6361
|
+
* @return {string}
|
|
6362
|
+
*/
|
|
6363
|
+
proto.bonus.BonusItemRequest.prototype.getWagerBalancePriority = function() {
|
|
6364
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 27, ""));
|
|
6365
|
+
};
|
|
6366
|
+
|
|
6367
|
+
|
|
6368
|
+
/**
|
|
6369
|
+
* @param {string} value
|
|
6370
|
+
* @return {!proto.bonus.BonusItemRequest} returns this
|
|
6371
|
+
*/
|
|
6372
|
+
proto.bonus.BonusItemRequest.prototype.setWagerBalancePriority = function(value) {
|
|
6373
|
+
return jspb.Message.setField(this, 27, value);
|
|
6374
|
+
};
|
|
6375
|
+
|
|
6376
|
+
|
|
6377
|
+
/**
|
|
6378
|
+
* Clears the field making it undefined.
|
|
6379
|
+
* @return {!proto.bonus.BonusItemRequest} returns this
|
|
6380
|
+
*/
|
|
6381
|
+
proto.bonus.BonusItemRequest.prototype.clearWagerBalancePriority = function() {
|
|
6382
|
+
return jspb.Message.setField(this, 27, undefined);
|
|
6383
|
+
};
|
|
6384
|
+
|
|
6385
|
+
|
|
6386
|
+
/**
|
|
6387
|
+
* Returns whether this field is set.
|
|
6388
|
+
* @return {boolean}
|
|
6389
|
+
*/
|
|
6390
|
+
proto.bonus.BonusItemRequest.prototype.hasWagerBalancePriority = function() {
|
|
6391
|
+
return jspb.Message.getField(this, 27) != null;
|
|
6392
|
+
};
|
|
6393
|
+
|
|
6394
|
+
|
|
6395
|
+
/**
|
|
6396
|
+
* optional bool segment_ids_provided = 28;
|
|
6397
|
+
* @return {boolean}
|
|
6398
|
+
*/
|
|
6399
|
+
proto.bonus.BonusItemRequest.prototype.getSegmentIdsProvided = function() {
|
|
6400
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 28, false));
|
|
6401
|
+
};
|
|
6402
|
+
|
|
6403
|
+
|
|
6404
|
+
/**
|
|
6405
|
+
* @param {boolean} value
|
|
6406
|
+
* @return {!proto.bonus.BonusItemRequest} returns this
|
|
6407
|
+
*/
|
|
6408
|
+
proto.bonus.BonusItemRequest.prototype.setSegmentIdsProvided = function(value) {
|
|
6409
|
+
return jspb.Message.setField(this, 28, value);
|
|
6410
|
+
};
|
|
6411
|
+
|
|
6412
|
+
|
|
6413
|
+
/**
|
|
6414
|
+
* Clears the field making it undefined.
|
|
6415
|
+
* @return {!proto.bonus.BonusItemRequest} returns this
|
|
6416
|
+
*/
|
|
6417
|
+
proto.bonus.BonusItemRequest.prototype.clearSegmentIdsProvided = function() {
|
|
6418
|
+
return jspb.Message.setField(this, 28, undefined);
|
|
6419
|
+
};
|
|
6420
|
+
|
|
6421
|
+
|
|
6422
|
+
/**
|
|
6423
|
+
* Returns whether this field is set.
|
|
6424
|
+
* @return {boolean}
|
|
6425
|
+
*/
|
|
6426
|
+
proto.bonus.BonusItemRequest.prototype.hasSegmentIdsProvided = function() {
|
|
6427
|
+
return jspb.Message.getField(this, 28) != null;
|
|
6428
|
+
};
|
|
6429
|
+
|
|
6430
|
+
|
|
6431
|
+
/**
|
|
6432
|
+
* optional bool wager_games_list_ids_provided = 29;
|
|
6433
|
+
* @return {boolean}
|
|
6434
|
+
*/
|
|
6435
|
+
proto.bonus.BonusItemRequest.prototype.getWagerGamesListIdsProvided = function() {
|
|
6436
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 29, false));
|
|
6437
|
+
};
|
|
6438
|
+
|
|
6439
|
+
|
|
6440
|
+
/**
|
|
6441
|
+
* @param {boolean} value
|
|
6442
|
+
* @return {!proto.bonus.BonusItemRequest} returns this
|
|
6443
|
+
*/
|
|
6444
|
+
proto.bonus.BonusItemRequest.prototype.setWagerGamesListIdsProvided = function(value) {
|
|
6445
|
+
return jspb.Message.setField(this, 29, value);
|
|
6446
|
+
};
|
|
6447
|
+
|
|
6448
|
+
|
|
6449
|
+
/**
|
|
6450
|
+
* Clears the field making it undefined.
|
|
6451
|
+
* @return {!proto.bonus.BonusItemRequest} returns this
|
|
6452
|
+
*/
|
|
6453
|
+
proto.bonus.BonusItemRequest.prototype.clearWagerGamesListIdsProvided = function() {
|
|
6454
|
+
return jspb.Message.setField(this, 29, undefined);
|
|
6455
|
+
};
|
|
6456
|
+
|
|
6457
|
+
|
|
6458
|
+
/**
|
|
6459
|
+
* Returns whether this field is set.
|
|
6460
|
+
* @return {boolean}
|
|
6461
|
+
*/
|
|
6462
|
+
proto.bonus.BonusItemRequest.prototype.hasWagerGamesListIdsProvided = function() {
|
|
6463
|
+
return jspb.Message.getField(this, 29) != null;
|
|
6464
|
+
};
|
|
6465
|
+
|
|
6466
|
+
|
|
6467
|
+
/**
|
|
6468
|
+
* optional bool excluded_segment_ids_provided = 30;
|
|
6469
|
+
* @return {boolean}
|
|
6470
|
+
*/
|
|
6471
|
+
proto.bonus.BonusItemRequest.prototype.getExcludedSegmentIdsProvided = function() {
|
|
6472
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 30, false));
|
|
6473
|
+
};
|
|
6474
|
+
|
|
6475
|
+
|
|
6476
|
+
/**
|
|
6477
|
+
* @param {boolean} value
|
|
6478
|
+
* @return {!proto.bonus.BonusItemRequest} returns this
|
|
6479
|
+
*/
|
|
6480
|
+
proto.bonus.BonusItemRequest.prototype.setExcludedSegmentIdsProvided = function(value) {
|
|
6481
|
+
return jspb.Message.setField(this, 30, value);
|
|
6482
|
+
};
|
|
6483
|
+
|
|
6484
|
+
|
|
6485
|
+
/**
|
|
6486
|
+
* Clears the field making it undefined.
|
|
6487
|
+
* @return {!proto.bonus.BonusItemRequest} returns this
|
|
6488
|
+
*/
|
|
6489
|
+
proto.bonus.BonusItemRequest.prototype.clearExcludedSegmentIdsProvided = function() {
|
|
6490
|
+
return jspb.Message.setField(this, 30, undefined);
|
|
6491
|
+
};
|
|
6492
|
+
|
|
6493
|
+
|
|
6494
|
+
/**
|
|
6495
|
+
* Returns whether this field is set.
|
|
6496
|
+
* @return {boolean}
|
|
6497
|
+
*/
|
|
6498
|
+
proto.bonus.BonusItemRequest.prototype.hasExcludedSegmentIdsProvided = function() {
|
|
6499
|
+
return jspb.Message.getField(this, 30) != null;
|
|
6500
|
+
};
|
|
6501
|
+
|
|
6502
|
+
|
|
6209
6503
|
|
|
6210
6504
|
|
|
6211
6505
|
|
|
@@ -6867,7 +7161,7 @@ proto.bonus.BonusResponse.prototype.hasData = function() {
|
|
|
6867
7161
|
* @private {!Array<number>}
|
|
6868
7162
|
* @const
|
|
6869
7163
|
*/
|
|
6870
|
-
proto.bonus.BonusItem.repeatedFields_ = [20,21,22,25,26,27,32,33];
|
|
7164
|
+
proto.bonus.BonusItem.repeatedFields_ = [20,21,22,25,26,27,32,33,39,40];
|
|
6871
7165
|
|
|
6872
7166
|
|
|
6873
7167
|
|
|
@@ -6944,7 +7238,10 @@ proto.bonus.BonusItem.toObject = function(includeInstance, msg) {
|
|
|
6944
7238
|
segments: jspb.Message.getFieldWithDefault(msg, 35, ""),
|
|
6945
7239
|
category: jspb.Message.getFieldWithDefault(msg, 36, ""),
|
|
6946
7240
|
mobileImage: jspb.Message.getFieldWithDefault(msg, 37, ""),
|
|
6947
|
-
mobileImageCdn: jspb.Message.getFieldWithDefault(msg, 38, "")
|
|
7241
|
+
mobileImageCdn: jspb.Message.getFieldWithDefault(msg, 38, ""),
|
|
7242
|
+
wagerGamesListIdsList: (f = jspb.Message.getRepeatedField(msg, 39)) == null ? undefined : f,
|
|
7243
|
+
excludedSegmentIdsList: (f = jspb.Message.getRepeatedField(msg, 40)) == null ? undefined : f,
|
|
7244
|
+
wagerBalancePriority: jspb.Message.getFieldWithDefault(msg, 41, "")
|
|
6948
7245
|
};
|
|
6949
7246
|
|
|
6950
7247
|
if (includeInstance) {
|
|
@@ -7142,6 +7439,22 @@ proto.bonus.BonusItem.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
7142
7439
|
var value = /** @type {string} */ (reader.readString());
|
|
7143
7440
|
msg.setMobileImageCdn(value);
|
|
7144
7441
|
break;
|
|
7442
|
+
case 39:
|
|
7443
|
+
var values = /** @type {!Array<number>} */ (reader.isDelimited() ? reader.readPackedInt32() : [reader.readInt32()]);
|
|
7444
|
+
for (var i = 0; i < values.length; i++) {
|
|
7445
|
+
msg.addWagerGamesListIds(values[i]);
|
|
7446
|
+
}
|
|
7447
|
+
break;
|
|
7448
|
+
case 40:
|
|
7449
|
+
var values = /** @type {!Array<number>} */ (reader.isDelimited() ? reader.readPackedInt32() : [reader.readInt32()]);
|
|
7450
|
+
for (var i = 0; i < values.length; i++) {
|
|
7451
|
+
msg.addExcludedSegmentIds(values[i]);
|
|
7452
|
+
}
|
|
7453
|
+
break;
|
|
7454
|
+
case 41:
|
|
7455
|
+
var value = /** @type {string} */ (reader.readString());
|
|
7456
|
+
msg.setWagerBalancePriority(value);
|
|
7457
|
+
break;
|
|
7145
7458
|
default:
|
|
7146
7459
|
reader.skipField();
|
|
7147
7460
|
break;
|
|
@@ -7444,6 +7757,27 @@ proto.bonus.BonusItem.serializeBinaryToWriter = function(message, writer) {
|
|
|
7444
7757
|
f
|
|
7445
7758
|
);
|
|
7446
7759
|
}
|
|
7760
|
+
f = message.getWagerGamesListIdsList();
|
|
7761
|
+
if (f.length > 0) {
|
|
7762
|
+
writer.writePackedInt32(
|
|
7763
|
+
39,
|
|
7764
|
+
f
|
|
7765
|
+
);
|
|
7766
|
+
}
|
|
7767
|
+
f = message.getExcludedSegmentIdsList();
|
|
7768
|
+
if (f.length > 0) {
|
|
7769
|
+
writer.writePackedInt32(
|
|
7770
|
+
40,
|
|
7771
|
+
f
|
|
7772
|
+
);
|
|
7773
|
+
}
|
|
7774
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 41));
|
|
7775
|
+
if (f != null) {
|
|
7776
|
+
writer.writeString(
|
|
7777
|
+
41,
|
|
7778
|
+
f
|
|
7779
|
+
);
|
|
7780
|
+
}
|
|
7447
7781
|
};
|
|
7448
7782
|
|
|
7449
7783
|
|
|
@@ -8830,6 +9164,116 @@ proto.bonus.BonusItem.prototype.hasMobileImageCdn = function() {
|
|
|
8830
9164
|
};
|
|
8831
9165
|
|
|
8832
9166
|
|
|
9167
|
+
/**
|
|
9168
|
+
* repeated int32 wager_games_list_ids = 39;
|
|
9169
|
+
* @return {!Array<number>}
|
|
9170
|
+
*/
|
|
9171
|
+
proto.bonus.BonusItem.prototype.getWagerGamesListIdsList = function() {
|
|
9172
|
+
return /** @type {!Array<number>} */ (jspb.Message.getRepeatedField(this, 39));
|
|
9173
|
+
};
|
|
9174
|
+
|
|
9175
|
+
|
|
9176
|
+
/**
|
|
9177
|
+
* @param {!Array<number>} value
|
|
9178
|
+
* @return {!proto.bonus.BonusItem} returns this
|
|
9179
|
+
*/
|
|
9180
|
+
proto.bonus.BonusItem.prototype.setWagerGamesListIdsList = function(value) {
|
|
9181
|
+
return jspb.Message.setField(this, 39, value || []);
|
|
9182
|
+
};
|
|
9183
|
+
|
|
9184
|
+
|
|
9185
|
+
/**
|
|
9186
|
+
* @param {number} value
|
|
9187
|
+
* @param {number=} opt_index
|
|
9188
|
+
* @return {!proto.bonus.BonusItem} returns this
|
|
9189
|
+
*/
|
|
9190
|
+
proto.bonus.BonusItem.prototype.addWagerGamesListIds = function(value, opt_index) {
|
|
9191
|
+
return jspb.Message.addToRepeatedField(this, 39, value, opt_index);
|
|
9192
|
+
};
|
|
9193
|
+
|
|
9194
|
+
|
|
9195
|
+
/**
|
|
9196
|
+
* Clears the list making it empty but non-null.
|
|
9197
|
+
* @return {!proto.bonus.BonusItem} returns this
|
|
9198
|
+
*/
|
|
9199
|
+
proto.bonus.BonusItem.prototype.clearWagerGamesListIdsList = function() {
|
|
9200
|
+
return this.setWagerGamesListIdsList([]);
|
|
9201
|
+
};
|
|
9202
|
+
|
|
9203
|
+
|
|
9204
|
+
/**
|
|
9205
|
+
* repeated int32 excluded_segment_ids = 40;
|
|
9206
|
+
* @return {!Array<number>}
|
|
9207
|
+
*/
|
|
9208
|
+
proto.bonus.BonusItem.prototype.getExcludedSegmentIdsList = function() {
|
|
9209
|
+
return /** @type {!Array<number>} */ (jspb.Message.getRepeatedField(this, 40));
|
|
9210
|
+
};
|
|
9211
|
+
|
|
9212
|
+
|
|
9213
|
+
/**
|
|
9214
|
+
* @param {!Array<number>} value
|
|
9215
|
+
* @return {!proto.bonus.BonusItem} returns this
|
|
9216
|
+
*/
|
|
9217
|
+
proto.bonus.BonusItem.prototype.setExcludedSegmentIdsList = function(value) {
|
|
9218
|
+
return jspb.Message.setField(this, 40, value || []);
|
|
9219
|
+
};
|
|
9220
|
+
|
|
9221
|
+
|
|
9222
|
+
/**
|
|
9223
|
+
* @param {number} value
|
|
9224
|
+
* @param {number=} opt_index
|
|
9225
|
+
* @return {!proto.bonus.BonusItem} returns this
|
|
9226
|
+
*/
|
|
9227
|
+
proto.bonus.BonusItem.prototype.addExcludedSegmentIds = function(value, opt_index) {
|
|
9228
|
+
return jspb.Message.addToRepeatedField(this, 40, value, opt_index);
|
|
9229
|
+
};
|
|
9230
|
+
|
|
9231
|
+
|
|
9232
|
+
/**
|
|
9233
|
+
* Clears the list making it empty but non-null.
|
|
9234
|
+
* @return {!proto.bonus.BonusItem} returns this
|
|
9235
|
+
*/
|
|
9236
|
+
proto.bonus.BonusItem.prototype.clearExcludedSegmentIdsList = function() {
|
|
9237
|
+
return this.setExcludedSegmentIdsList([]);
|
|
9238
|
+
};
|
|
9239
|
+
|
|
9240
|
+
|
|
9241
|
+
/**
|
|
9242
|
+
* optional string wager_balance_priority = 41;
|
|
9243
|
+
* @return {string}
|
|
9244
|
+
*/
|
|
9245
|
+
proto.bonus.BonusItem.prototype.getWagerBalancePriority = function() {
|
|
9246
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 41, ""));
|
|
9247
|
+
};
|
|
9248
|
+
|
|
9249
|
+
|
|
9250
|
+
/**
|
|
9251
|
+
* @param {string} value
|
|
9252
|
+
* @return {!proto.bonus.BonusItem} returns this
|
|
9253
|
+
*/
|
|
9254
|
+
proto.bonus.BonusItem.prototype.setWagerBalancePriority = function(value) {
|
|
9255
|
+
return jspb.Message.setField(this, 41, value);
|
|
9256
|
+
};
|
|
9257
|
+
|
|
9258
|
+
|
|
9259
|
+
/**
|
|
9260
|
+
* Clears the field making it undefined.
|
|
9261
|
+
* @return {!proto.bonus.BonusItem} returns this
|
|
9262
|
+
*/
|
|
9263
|
+
proto.bonus.BonusItem.prototype.clearWagerBalancePriority = function() {
|
|
9264
|
+
return jspb.Message.setField(this, 41, undefined);
|
|
9265
|
+
};
|
|
9266
|
+
|
|
9267
|
+
|
|
9268
|
+
/**
|
|
9269
|
+
* Returns whether this field is set.
|
|
9270
|
+
* @return {boolean}
|
|
9271
|
+
*/
|
|
9272
|
+
proto.bonus.BonusItem.prototype.hasWagerBalancePriority = function() {
|
|
9273
|
+
return jspb.Message.getField(this, 41) != null;
|
|
9274
|
+
};
|
|
9275
|
+
|
|
9276
|
+
|
|
8833
9277
|
|
|
8834
9278
|
/**
|
|
8835
9279
|
* List of repeated fields within this message type.
|
package/game/game.proto
CHANGED
|
@@ -93,6 +93,8 @@ service Game {
|
|
|
93
93
|
rpc getCounterScopes(ScopeRequest) returns (ScopeResponse);
|
|
94
94
|
rpc getProvidersByIds(ProvidersIds) returns (ProviderPoorItemsResponse);
|
|
95
95
|
rpc getProvidersBySlugs(ProvidersSlugs) returns (ProviderItemsResponse);
|
|
96
|
+
// Lightweight UUID lookup for cross-service bet history filtering.
|
|
97
|
+
rpc resolveGameUuidsForBetHistoryFilter(ResolveGameUuidsForBetHistoryFilterRequest) returns (ResolveGameUuidsForBetHistoryFilterResponse);
|
|
96
98
|
//Wager lists
|
|
97
99
|
rpc readSingleWagerList(GetWagerListRequest) returns (WagerListResponse);
|
|
98
100
|
rpc createSingleWagerList(WagerListRequest) returns (WagerListResponse);
|
|
@@ -826,6 +828,19 @@ message ProvidersSlugs {
|
|
|
826
828
|
message ProviderPoorItemsResponse {
|
|
827
829
|
repeated ProviderItem items = 1;
|
|
828
830
|
}
|
|
831
|
+
message ResolveGameUuidsForBetHistoryFilterRequest {
|
|
832
|
+
optional int32 game_id = 1;
|
|
833
|
+
optional string game_title = 2; // Trimmed substring match.
|
|
834
|
+
optional string game_provider = 3; // Provider display title, not slug.
|
|
835
|
+
optional string provider_slug = 4; // Exact provider slug match.
|
|
836
|
+
optional bool admin_side = 5; // Skip catalog visibility exclusions when true.
|
|
837
|
+
optional int32 max_uuids = 6; // Safety cap; game-service enforces a default if unset.
|
|
838
|
+
}
|
|
839
|
+
message ResolveGameUuidsForBetHistoryFilterResponse {
|
|
840
|
+
repeated string game_uuids = 1;
|
|
841
|
+
optional int32 total_items = 2; // Total matches before max_uuids cap.
|
|
842
|
+
optional bool truncated = 3; // True when total_items exceeds max_uuids.
|
|
843
|
+
}
|
|
829
844
|
//Free Spins
|
|
830
845
|
message FreeSpinSettingsItem {
|
|
831
846
|
float spin_amount = 1;
|
package/game/game_grpc_pb.js
CHANGED
|
@@ -917,6 +917,28 @@ function deserialize_game_ProvidersSlugs(buffer_arg) {
|
|
|
917
917
|
return game_pb.ProvidersSlugs.deserializeBinary(new Uint8Array(buffer_arg));
|
|
918
918
|
}
|
|
919
919
|
|
|
920
|
+
function serialize_game_ResolveGameUuidsForBetHistoryFilterRequest(arg) {
|
|
921
|
+
if (!(arg instanceof game_pb.ResolveGameUuidsForBetHistoryFilterRequest)) {
|
|
922
|
+
throw new Error('Expected argument of type game.ResolveGameUuidsForBetHistoryFilterRequest');
|
|
923
|
+
}
|
|
924
|
+
return Buffer.from(arg.serializeBinary());
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
function deserialize_game_ResolveGameUuidsForBetHistoryFilterRequest(buffer_arg) {
|
|
928
|
+
return game_pb.ResolveGameUuidsForBetHistoryFilterRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
function serialize_game_ResolveGameUuidsForBetHistoryFilterResponse(arg) {
|
|
932
|
+
if (!(arg instanceof game_pb.ResolveGameUuidsForBetHistoryFilterResponse)) {
|
|
933
|
+
throw new Error('Expected argument of type game.ResolveGameUuidsForBetHistoryFilterResponse');
|
|
934
|
+
}
|
|
935
|
+
return Buffer.from(arg.serializeBinary());
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
function deserialize_game_ResolveGameUuidsForBetHistoryFilterResponse(buffer_arg) {
|
|
939
|
+
return game_pb.ResolveGameUuidsForBetHistoryFilterResponse.deserializeBinary(new Uint8Array(buffer_arg));
|
|
940
|
+
}
|
|
941
|
+
|
|
920
942
|
function serialize_game_SEOInstanceRequest(arg) {
|
|
921
943
|
if (!(arg instanceof game_pb.SEOInstanceRequest)) {
|
|
922
944
|
throw new Error('Expected argument of type game.SEOInstanceRequest');
|
|
@@ -2151,6 +2173,18 @@ getGamesByUuids: {
|
|
|
2151
2173
|
responseSerialize: serialize_game_ProviderItemsResponse,
|
|
2152
2174
|
responseDeserialize: deserialize_game_ProviderItemsResponse,
|
|
2153
2175
|
},
|
|
2176
|
+
// Lightweight UUID lookup for cross-service bet history filtering.
|
|
2177
|
+
resolveGameUuidsForBetHistoryFilter: {
|
|
2178
|
+
path: '/game.Game/resolveGameUuidsForBetHistoryFilter',
|
|
2179
|
+
requestStream: false,
|
|
2180
|
+
responseStream: false,
|
|
2181
|
+
requestType: game_pb.ResolveGameUuidsForBetHistoryFilterRequest,
|
|
2182
|
+
responseType: game_pb.ResolveGameUuidsForBetHistoryFilterResponse,
|
|
2183
|
+
requestSerialize: serialize_game_ResolveGameUuidsForBetHistoryFilterRequest,
|
|
2184
|
+
requestDeserialize: deserialize_game_ResolveGameUuidsForBetHistoryFilterRequest,
|
|
2185
|
+
responseSerialize: serialize_game_ResolveGameUuidsForBetHistoryFilterResponse,
|
|
2186
|
+
responseDeserialize: deserialize_game_ResolveGameUuidsForBetHistoryFilterResponse,
|
|
2187
|
+
},
|
|
2154
2188
|
// Wager lists
|
|
2155
2189
|
readSingleWagerList: {
|
|
2156
2190
|
path: '/game.Game/readSingleWagerList',
|
package/game/game_pb.js
CHANGED
|
@@ -135,6 +135,8 @@ goog.exportSymbol('proto.game.ProviderSearchRequest', null, global);
|
|
|
135
135
|
goog.exportSymbol('proto.game.ProviderStatusResponse', null, global);
|
|
136
136
|
goog.exportSymbol('proto.game.ProvidersIds', null, global);
|
|
137
137
|
goog.exportSymbol('proto.game.ProvidersSlugs', null, global);
|
|
138
|
+
goog.exportSymbol('proto.game.ResolveGameUuidsForBetHistoryFilterRequest', null, global);
|
|
139
|
+
goog.exportSymbol('proto.game.ResolveGameUuidsForBetHistoryFilterResponse', null, global);
|
|
138
140
|
goog.exportSymbol('proto.game.SEOAttribute', null, global);
|
|
139
141
|
goog.exportSymbol('proto.game.SEOInstanceRelation', null, global);
|
|
140
142
|
goog.exportSymbol('proto.game.SEOInstanceRequest', null, global);
|
|
@@ -2537,6 +2539,48 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
2537
2539
|
*/
|
|
2538
2540
|
proto.game.ProviderPoorItemsResponse.displayName = 'proto.game.ProviderPoorItemsResponse';
|
|
2539
2541
|
}
|
|
2542
|
+
/**
|
|
2543
|
+
* Generated by JsPbCodeGenerator.
|
|
2544
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
2545
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
2546
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
2547
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
2548
|
+
* valid.
|
|
2549
|
+
* @extends {jspb.Message}
|
|
2550
|
+
* @constructor
|
|
2551
|
+
*/
|
|
2552
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest = function(opt_data) {
|
|
2553
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
2554
|
+
};
|
|
2555
|
+
goog.inherits(proto.game.ResolveGameUuidsForBetHistoryFilterRequest, jspb.Message);
|
|
2556
|
+
if (goog.DEBUG && !COMPILED) {
|
|
2557
|
+
/**
|
|
2558
|
+
* @public
|
|
2559
|
+
* @override
|
|
2560
|
+
*/
|
|
2561
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.displayName = 'proto.game.ResolveGameUuidsForBetHistoryFilterRequest';
|
|
2562
|
+
}
|
|
2563
|
+
/**
|
|
2564
|
+
* Generated by JsPbCodeGenerator.
|
|
2565
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
2566
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
2567
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
2568
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
2569
|
+
* valid.
|
|
2570
|
+
* @extends {jspb.Message}
|
|
2571
|
+
* @constructor
|
|
2572
|
+
*/
|
|
2573
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse = function(opt_data) {
|
|
2574
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.game.ResolveGameUuidsForBetHistoryFilterResponse.repeatedFields_, null);
|
|
2575
|
+
};
|
|
2576
|
+
goog.inherits(proto.game.ResolveGameUuidsForBetHistoryFilterResponse, jspb.Message);
|
|
2577
|
+
if (goog.DEBUG && !COMPILED) {
|
|
2578
|
+
/**
|
|
2579
|
+
* @public
|
|
2580
|
+
* @override
|
|
2581
|
+
*/
|
|
2582
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.displayName = 'proto.game.ResolveGameUuidsForBetHistoryFilterResponse';
|
|
2583
|
+
}
|
|
2540
2584
|
/**
|
|
2541
2585
|
* Generated by JsPbCodeGenerator.
|
|
2542
2586
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
@@ -35185,6 +35229,646 @@ proto.game.ProviderPoorItemsResponse.prototype.clearItemsList = function() {
|
|
|
35185
35229
|
|
|
35186
35230
|
|
|
35187
35231
|
|
|
35232
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
35233
|
+
/**
|
|
35234
|
+
* Creates an object representation of this proto.
|
|
35235
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
35236
|
+
* Optional fields that are not set will be set to undefined.
|
|
35237
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
35238
|
+
* For the list of reserved names please see:
|
|
35239
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
35240
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
35241
|
+
* JSPB instance for transitional soy proto support:
|
|
35242
|
+
* http://goto/soy-param-migration
|
|
35243
|
+
* @return {!Object}
|
|
35244
|
+
*/
|
|
35245
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.toObject = function(opt_includeInstance) {
|
|
35246
|
+
return proto.game.ResolveGameUuidsForBetHistoryFilterRequest.toObject(opt_includeInstance, this);
|
|
35247
|
+
};
|
|
35248
|
+
|
|
35249
|
+
|
|
35250
|
+
/**
|
|
35251
|
+
* Static version of the {@see toObject} method.
|
|
35252
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
35253
|
+
* the JSPB instance for transitional soy proto support:
|
|
35254
|
+
* http://goto/soy-param-migration
|
|
35255
|
+
* @param {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} msg The msg instance to transform.
|
|
35256
|
+
* @return {!Object}
|
|
35257
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
35258
|
+
*/
|
|
35259
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.toObject = function(includeInstance, msg) {
|
|
35260
|
+
var f, obj = {
|
|
35261
|
+
gameId: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
35262
|
+
gameTitle: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
35263
|
+
gameProvider: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
35264
|
+
providerSlug: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
35265
|
+
adminSide: jspb.Message.getBooleanFieldWithDefault(msg, 5, false),
|
|
35266
|
+
maxUuids: jspb.Message.getFieldWithDefault(msg, 6, 0)
|
|
35267
|
+
};
|
|
35268
|
+
|
|
35269
|
+
if (includeInstance) {
|
|
35270
|
+
obj.$jspbMessageInstance = msg;
|
|
35271
|
+
}
|
|
35272
|
+
return obj;
|
|
35273
|
+
};
|
|
35274
|
+
}
|
|
35275
|
+
|
|
35276
|
+
|
|
35277
|
+
/**
|
|
35278
|
+
* Deserializes binary data (in protobuf wire format).
|
|
35279
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
35280
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest}
|
|
35281
|
+
*/
|
|
35282
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.deserializeBinary = function(bytes) {
|
|
35283
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
35284
|
+
var msg = new proto.game.ResolveGameUuidsForBetHistoryFilterRequest;
|
|
35285
|
+
return proto.game.ResolveGameUuidsForBetHistoryFilterRequest.deserializeBinaryFromReader(msg, reader);
|
|
35286
|
+
};
|
|
35287
|
+
|
|
35288
|
+
|
|
35289
|
+
/**
|
|
35290
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
35291
|
+
* given reader into the given message object.
|
|
35292
|
+
* @param {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} msg The message object to deserialize into.
|
|
35293
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
35294
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest}
|
|
35295
|
+
*/
|
|
35296
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
35297
|
+
while (reader.nextField()) {
|
|
35298
|
+
if (reader.isEndGroup()) {
|
|
35299
|
+
break;
|
|
35300
|
+
}
|
|
35301
|
+
var field = reader.getFieldNumber();
|
|
35302
|
+
switch (field) {
|
|
35303
|
+
case 1:
|
|
35304
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
35305
|
+
msg.setGameId(value);
|
|
35306
|
+
break;
|
|
35307
|
+
case 2:
|
|
35308
|
+
var value = /** @type {string} */ (reader.readString());
|
|
35309
|
+
msg.setGameTitle(value);
|
|
35310
|
+
break;
|
|
35311
|
+
case 3:
|
|
35312
|
+
var value = /** @type {string} */ (reader.readString());
|
|
35313
|
+
msg.setGameProvider(value);
|
|
35314
|
+
break;
|
|
35315
|
+
case 4:
|
|
35316
|
+
var value = /** @type {string} */ (reader.readString());
|
|
35317
|
+
msg.setProviderSlug(value);
|
|
35318
|
+
break;
|
|
35319
|
+
case 5:
|
|
35320
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
35321
|
+
msg.setAdminSide(value);
|
|
35322
|
+
break;
|
|
35323
|
+
case 6:
|
|
35324
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
35325
|
+
msg.setMaxUuids(value);
|
|
35326
|
+
break;
|
|
35327
|
+
default:
|
|
35328
|
+
reader.skipField();
|
|
35329
|
+
break;
|
|
35330
|
+
}
|
|
35331
|
+
}
|
|
35332
|
+
return msg;
|
|
35333
|
+
};
|
|
35334
|
+
|
|
35335
|
+
|
|
35336
|
+
/**
|
|
35337
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
35338
|
+
* @return {!Uint8Array}
|
|
35339
|
+
*/
|
|
35340
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.serializeBinary = function() {
|
|
35341
|
+
var writer = new jspb.BinaryWriter();
|
|
35342
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.serializeBinaryToWriter(this, writer);
|
|
35343
|
+
return writer.getResultBuffer();
|
|
35344
|
+
};
|
|
35345
|
+
|
|
35346
|
+
|
|
35347
|
+
/**
|
|
35348
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
35349
|
+
* format), writing to the given BinaryWriter.
|
|
35350
|
+
* @param {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} message
|
|
35351
|
+
* @param {!jspb.BinaryWriter} writer
|
|
35352
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
35353
|
+
*/
|
|
35354
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.serializeBinaryToWriter = function(message, writer) {
|
|
35355
|
+
var f = undefined;
|
|
35356
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 1));
|
|
35357
|
+
if (f != null) {
|
|
35358
|
+
writer.writeInt32(
|
|
35359
|
+
1,
|
|
35360
|
+
f
|
|
35361
|
+
);
|
|
35362
|
+
}
|
|
35363
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 2));
|
|
35364
|
+
if (f != null) {
|
|
35365
|
+
writer.writeString(
|
|
35366
|
+
2,
|
|
35367
|
+
f
|
|
35368
|
+
);
|
|
35369
|
+
}
|
|
35370
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
|
35371
|
+
if (f != null) {
|
|
35372
|
+
writer.writeString(
|
|
35373
|
+
3,
|
|
35374
|
+
f
|
|
35375
|
+
);
|
|
35376
|
+
}
|
|
35377
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 4));
|
|
35378
|
+
if (f != null) {
|
|
35379
|
+
writer.writeString(
|
|
35380
|
+
4,
|
|
35381
|
+
f
|
|
35382
|
+
);
|
|
35383
|
+
}
|
|
35384
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 5));
|
|
35385
|
+
if (f != null) {
|
|
35386
|
+
writer.writeBool(
|
|
35387
|
+
5,
|
|
35388
|
+
f
|
|
35389
|
+
);
|
|
35390
|
+
}
|
|
35391
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 6));
|
|
35392
|
+
if (f != null) {
|
|
35393
|
+
writer.writeInt32(
|
|
35394
|
+
6,
|
|
35395
|
+
f
|
|
35396
|
+
);
|
|
35397
|
+
}
|
|
35398
|
+
};
|
|
35399
|
+
|
|
35400
|
+
|
|
35401
|
+
/**
|
|
35402
|
+
* optional int32 game_id = 1;
|
|
35403
|
+
* @return {number}
|
|
35404
|
+
*/
|
|
35405
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.getGameId = function() {
|
|
35406
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
|
|
35407
|
+
};
|
|
35408
|
+
|
|
35409
|
+
|
|
35410
|
+
/**
|
|
35411
|
+
* @param {number} value
|
|
35412
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} returns this
|
|
35413
|
+
*/
|
|
35414
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.setGameId = function(value) {
|
|
35415
|
+
return jspb.Message.setField(this, 1, value);
|
|
35416
|
+
};
|
|
35417
|
+
|
|
35418
|
+
|
|
35419
|
+
/**
|
|
35420
|
+
* Clears the field making it undefined.
|
|
35421
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} returns this
|
|
35422
|
+
*/
|
|
35423
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.clearGameId = function() {
|
|
35424
|
+
return jspb.Message.setField(this, 1, undefined);
|
|
35425
|
+
};
|
|
35426
|
+
|
|
35427
|
+
|
|
35428
|
+
/**
|
|
35429
|
+
* Returns whether this field is set.
|
|
35430
|
+
* @return {boolean}
|
|
35431
|
+
*/
|
|
35432
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.hasGameId = function() {
|
|
35433
|
+
return jspb.Message.getField(this, 1) != null;
|
|
35434
|
+
};
|
|
35435
|
+
|
|
35436
|
+
|
|
35437
|
+
/**
|
|
35438
|
+
* optional string game_title = 2;
|
|
35439
|
+
* @return {string}
|
|
35440
|
+
*/
|
|
35441
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.getGameTitle = function() {
|
|
35442
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
35443
|
+
};
|
|
35444
|
+
|
|
35445
|
+
|
|
35446
|
+
/**
|
|
35447
|
+
* @param {string} value
|
|
35448
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} returns this
|
|
35449
|
+
*/
|
|
35450
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.setGameTitle = function(value) {
|
|
35451
|
+
return jspb.Message.setField(this, 2, value);
|
|
35452
|
+
};
|
|
35453
|
+
|
|
35454
|
+
|
|
35455
|
+
/**
|
|
35456
|
+
* Clears the field making it undefined.
|
|
35457
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} returns this
|
|
35458
|
+
*/
|
|
35459
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.clearGameTitle = function() {
|
|
35460
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
35461
|
+
};
|
|
35462
|
+
|
|
35463
|
+
|
|
35464
|
+
/**
|
|
35465
|
+
* Returns whether this field is set.
|
|
35466
|
+
* @return {boolean}
|
|
35467
|
+
*/
|
|
35468
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.hasGameTitle = function() {
|
|
35469
|
+
return jspb.Message.getField(this, 2) != null;
|
|
35470
|
+
};
|
|
35471
|
+
|
|
35472
|
+
|
|
35473
|
+
/**
|
|
35474
|
+
* optional string game_provider = 3;
|
|
35475
|
+
* @return {string}
|
|
35476
|
+
*/
|
|
35477
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.getGameProvider = function() {
|
|
35478
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
35479
|
+
};
|
|
35480
|
+
|
|
35481
|
+
|
|
35482
|
+
/**
|
|
35483
|
+
* @param {string} value
|
|
35484
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} returns this
|
|
35485
|
+
*/
|
|
35486
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.setGameProvider = function(value) {
|
|
35487
|
+
return jspb.Message.setField(this, 3, value);
|
|
35488
|
+
};
|
|
35489
|
+
|
|
35490
|
+
|
|
35491
|
+
/**
|
|
35492
|
+
* Clears the field making it undefined.
|
|
35493
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} returns this
|
|
35494
|
+
*/
|
|
35495
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.clearGameProvider = function() {
|
|
35496
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
35497
|
+
};
|
|
35498
|
+
|
|
35499
|
+
|
|
35500
|
+
/**
|
|
35501
|
+
* Returns whether this field is set.
|
|
35502
|
+
* @return {boolean}
|
|
35503
|
+
*/
|
|
35504
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.hasGameProvider = function() {
|
|
35505
|
+
return jspb.Message.getField(this, 3) != null;
|
|
35506
|
+
};
|
|
35507
|
+
|
|
35508
|
+
|
|
35509
|
+
/**
|
|
35510
|
+
* optional string provider_slug = 4;
|
|
35511
|
+
* @return {string}
|
|
35512
|
+
*/
|
|
35513
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.getProviderSlug = function() {
|
|
35514
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
35515
|
+
};
|
|
35516
|
+
|
|
35517
|
+
|
|
35518
|
+
/**
|
|
35519
|
+
* @param {string} value
|
|
35520
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} returns this
|
|
35521
|
+
*/
|
|
35522
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.setProviderSlug = function(value) {
|
|
35523
|
+
return jspb.Message.setField(this, 4, value);
|
|
35524
|
+
};
|
|
35525
|
+
|
|
35526
|
+
|
|
35527
|
+
/**
|
|
35528
|
+
* Clears the field making it undefined.
|
|
35529
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} returns this
|
|
35530
|
+
*/
|
|
35531
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.clearProviderSlug = function() {
|
|
35532
|
+
return jspb.Message.setField(this, 4, undefined);
|
|
35533
|
+
};
|
|
35534
|
+
|
|
35535
|
+
|
|
35536
|
+
/**
|
|
35537
|
+
* Returns whether this field is set.
|
|
35538
|
+
* @return {boolean}
|
|
35539
|
+
*/
|
|
35540
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.hasProviderSlug = function() {
|
|
35541
|
+
return jspb.Message.getField(this, 4) != null;
|
|
35542
|
+
};
|
|
35543
|
+
|
|
35544
|
+
|
|
35545
|
+
/**
|
|
35546
|
+
* optional bool admin_side = 5;
|
|
35547
|
+
* @return {boolean}
|
|
35548
|
+
*/
|
|
35549
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.getAdminSide = function() {
|
|
35550
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 5, false));
|
|
35551
|
+
};
|
|
35552
|
+
|
|
35553
|
+
|
|
35554
|
+
/**
|
|
35555
|
+
* @param {boolean} value
|
|
35556
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} returns this
|
|
35557
|
+
*/
|
|
35558
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.setAdminSide = function(value) {
|
|
35559
|
+
return jspb.Message.setField(this, 5, value);
|
|
35560
|
+
};
|
|
35561
|
+
|
|
35562
|
+
|
|
35563
|
+
/**
|
|
35564
|
+
* Clears the field making it undefined.
|
|
35565
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} returns this
|
|
35566
|
+
*/
|
|
35567
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.clearAdminSide = function() {
|
|
35568
|
+
return jspb.Message.setField(this, 5, undefined);
|
|
35569
|
+
};
|
|
35570
|
+
|
|
35571
|
+
|
|
35572
|
+
/**
|
|
35573
|
+
* Returns whether this field is set.
|
|
35574
|
+
* @return {boolean}
|
|
35575
|
+
*/
|
|
35576
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.hasAdminSide = function() {
|
|
35577
|
+
return jspb.Message.getField(this, 5) != null;
|
|
35578
|
+
};
|
|
35579
|
+
|
|
35580
|
+
|
|
35581
|
+
/**
|
|
35582
|
+
* optional int32 max_uuids = 6;
|
|
35583
|
+
* @return {number}
|
|
35584
|
+
*/
|
|
35585
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.getMaxUuids = function() {
|
|
35586
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 6, 0));
|
|
35587
|
+
};
|
|
35588
|
+
|
|
35589
|
+
|
|
35590
|
+
/**
|
|
35591
|
+
* @param {number} value
|
|
35592
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} returns this
|
|
35593
|
+
*/
|
|
35594
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.setMaxUuids = function(value) {
|
|
35595
|
+
return jspb.Message.setField(this, 6, value);
|
|
35596
|
+
};
|
|
35597
|
+
|
|
35598
|
+
|
|
35599
|
+
/**
|
|
35600
|
+
* Clears the field making it undefined.
|
|
35601
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterRequest} returns this
|
|
35602
|
+
*/
|
|
35603
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.clearMaxUuids = function() {
|
|
35604
|
+
return jspb.Message.setField(this, 6, undefined);
|
|
35605
|
+
};
|
|
35606
|
+
|
|
35607
|
+
|
|
35608
|
+
/**
|
|
35609
|
+
* Returns whether this field is set.
|
|
35610
|
+
* @return {boolean}
|
|
35611
|
+
*/
|
|
35612
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterRequest.prototype.hasMaxUuids = function() {
|
|
35613
|
+
return jspb.Message.getField(this, 6) != null;
|
|
35614
|
+
};
|
|
35615
|
+
|
|
35616
|
+
|
|
35617
|
+
|
|
35618
|
+
/**
|
|
35619
|
+
* List of repeated fields within this message type.
|
|
35620
|
+
* @private {!Array<number>}
|
|
35621
|
+
* @const
|
|
35622
|
+
*/
|
|
35623
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.repeatedFields_ = [1];
|
|
35624
|
+
|
|
35625
|
+
|
|
35626
|
+
|
|
35627
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
35628
|
+
/**
|
|
35629
|
+
* Creates an object representation of this proto.
|
|
35630
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
35631
|
+
* Optional fields that are not set will be set to undefined.
|
|
35632
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
35633
|
+
* For the list of reserved names please see:
|
|
35634
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
35635
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
35636
|
+
* JSPB instance for transitional soy proto support:
|
|
35637
|
+
* http://goto/soy-param-migration
|
|
35638
|
+
* @return {!Object}
|
|
35639
|
+
*/
|
|
35640
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.toObject = function(opt_includeInstance) {
|
|
35641
|
+
return proto.game.ResolveGameUuidsForBetHistoryFilterResponse.toObject(opt_includeInstance, this);
|
|
35642
|
+
};
|
|
35643
|
+
|
|
35644
|
+
|
|
35645
|
+
/**
|
|
35646
|
+
* Static version of the {@see toObject} method.
|
|
35647
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
35648
|
+
* the JSPB instance for transitional soy proto support:
|
|
35649
|
+
* http://goto/soy-param-migration
|
|
35650
|
+
* @param {!proto.game.ResolveGameUuidsForBetHistoryFilterResponse} msg The msg instance to transform.
|
|
35651
|
+
* @return {!Object}
|
|
35652
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
35653
|
+
*/
|
|
35654
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.toObject = function(includeInstance, msg) {
|
|
35655
|
+
var f, obj = {
|
|
35656
|
+
gameUuidsList: (f = jspb.Message.getRepeatedField(msg, 1)) == null ? undefined : f,
|
|
35657
|
+
totalItems: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
|
35658
|
+
truncated: jspb.Message.getBooleanFieldWithDefault(msg, 3, false)
|
|
35659
|
+
};
|
|
35660
|
+
|
|
35661
|
+
if (includeInstance) {
|
|
35662
|
+
obj.$jspbMessageInstance = msg;
|
|
35663
|
+
}
|
|
35664
|
+
return obj;
|
|
35665
|
+
};
|
|
35666
|
+
}
|
|
35667
|
+
|
|
35668
|
+
|
|
35669
|
+
/**
|
|
35670
|
+
* Deserializes binary data (in protobuf wire format).
|
|
35671
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
35672
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterResponse}
|
|
35673
|
+
*/
|
|
35674
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.deserializeBinary = function(bytes) {
|
|
35675
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
35676
|
+
var msg = new proto.game.ResolveGameUuidsForBetHistoryFilterResponse;
|
|
35677
|
+
return proto.game.ResolveGameUuidsForBetHistoryFilterResponse.deserializeBinaryFromReader(msg, reader);
|
|
35678
|
+
};
|
|
35679
|
+
|
|
35680
|
+
|
|
35681
|
+
/**
|
|
35682
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
35683
|
+
* given reader into the given message object.
|
|
35684
|
+
* @param {!proto.game.ResolveGameUuidsForBetHistoryFilterResponse} msg The message object to deserialize into.
|
|
35685
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
35686
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterResponse}
|
|
35687
|
+
*/
|
|
35688
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.deserializeBinaryFromReader = function(msg, reader) {
|
|
35689
|
+
while (reader.nextField()) {
|
|
35690
|
+
if (reader.isEndGroup()) {
|
|
35691
|
+
break;
|
|
35692
|
+
}
|
|
35693
|
+
var field = reader.getFieldNumber();
|
|
35694
|
+
switch (field) {
|
|
35695
|
+
case 1:
|
|
35696
|
+
var value = /** @type {string} */ (reader.readString());
|
|
35697
|
+
msg.addGameUuids(value);
|
|
35698
|
+
break;
|
|
35699
|
+
case 2:
|
|
35700
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
35701
|
+
msg.setTotalItems(value);
|
|
35702
|
+
break;
|
|
35703
|
+
case 3:
|
|
35704
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
35705
|
+
msg.setTruncated(value);
|
|
35706
|
+
break;
|
|
35707
|
+
default:
|
|
35708
|
+
reader.skipField();
|
|
35709
|
+
break;
|
|
35710
|
+
}
|
|
35711
|
+
}
|
|
35712
|
+
return msg;
|
|
35713
|
+
};
|
|
35714
|
+
|
|
35715
|
+
|
|
35716
|
+
/**
|
|
35717
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
35718
|
+
* @return {!Uint8Array}
|
|
35719
|
+
*/
|
|
35720
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.serializeBinary = function() {
|
|
35721
|
+
var writer = new jspb.BinaryWriter();
|
|
35722
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.serializeBinaryToWriter(this, writer);
|
|
35723
|
+
return writer.getResultBuffer();
|
|
35724
|
+
};
|
|
35725
|
+
|
|
35726
|
+
|
|
35727
|
+
/**
|
|
35728
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
35729
|
+
* format), writing to the given BinaryWriter.
|
|
35730
|
+
* @param {!proto.game.ResolveGameUuidsForBetHistoryFilterResponse} message
|
|
35731
|
+
* @param {!jspb.BinaryWriter} writer
|
|
35732
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
35733
|
+
*/
|
|
35734
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.serializeBinaryToWriter = function(message, writer) {
|
|
35735
|
+
var f = undefined;
|
|
35736
|
+
f = message.getGameUuidsList();
|
|
35737
|
+
if (f.length > 0) {
|
|
35738
|
+
writer.writeRepeatedString(
|
|
35739
|
+
1,
|
|
35740
|
+
f
|
|
35741
|
+
);
|
|
35742
|
+
}
|
|
35743
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 2));
|
|
35744
|
+
if (f != null) {
|
|
35745
|
+
writer.writeInt32(
|
|
35746
|
+
2,
|
|
35747
|
+
f
|
|
35748
|
+
);
|
|
35749
|
+
}
|
|
35750
|
+
f = /** @type {boolean} */ (jspb.Message.getField(message, 3));
|
|
35751
|
+
if (f != null) {
|
|
35752
|
+
writer.writeBool(
|
|
35753
|
+
3,
|
|
35754
|
+
f
|
|
35755
|
+
);
|
|
35756
|
+
}
|
|
35757
|
+
};
|
|
35758
|
+
|
|
35759
|
+
|
|
35760
|
+
/**
|
|
35761
|
+
* repeated string game_uuids = 1;
|
|
35762
|
+
* @return {!Array<string>}
|
|
35763
|
+
*/
|
|
35764
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.getGameUuidsList = function() {
|
|
35765
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 1));
|
|
35766
|
+
};
|
|
35767
|
+
|
|
35768
|
+
|
|
35769
|
+
/**
|
|
35770
|
+
* @param {!Array<string>} value
|
|
35771
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterResponse} returns this
|
|
35772
|
+
*/
|
|
35773
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.setGameUuidsList = function(value) {
|
|
35774
|
+
return jspb.Message.setField(this, 1, value || []);
|
|
35775
|
+
};
|
|
35776
|
+
|
|
35777
|
+
|
|
35778
|
+
/**
|
|
35779
|
+
* @param {string} value
|
|
35780
|
+
* @param {number=} opt_index
|
|
35781
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterResponse} returns this
|
|
35782
|
+
*/
|
|
35783
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.addGameUuids = function(value, opt_index) {
|
|
35784
|
+
return jspb.Message.addToRepeatedField(this, 1, value, opt_index);
|
|
35785
|
+
};
|
|
35786
|
+
|
|
35787
|
+
|
|
35788
|
+
/**
|
|
35789
|
+
* Clears the list making it empty but non-null.
|
|
35790
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterResponse} returns this
|
|
35791
|
+
*/
|
|
35792
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.clearGameUuidsList = function() {
|
|
35793
|
+
return this.setGameUuidsList([]);
|
|
35794
|
+
};
|
|
35795
|
+
|
|
35796
|
+
|
|
35797
|
+
/**
|
|
35798
|
+
* optional int32 total_items = 2;
|
|
35799
|
+
* @return {number}
|
|
35800
|
+
*/
|
|
35801
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.getTotalItems = function() {
|
|
35802
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 0));
|
|
35803
|
+
};
|
|
35804
|
+
|
|
35805
|
+
|
|
35806
|
+
/**
|
|
35807
|
+
* @param {number} value
|
|
35808
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterResponse} returns this
|
|
35809
|
+
*/
|
|
35810
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.setTotalItems = function(value) {
|
|
35811
|
+
return jspb.Message.setField(this, 2, value);
|
|
35812
|
+
};
|
|
35813
|
+
|
|
35814
|
+
|
|
35815
|
+
/**
|
|
35816
|
+
* Clears the field making it undefined.
|
|
35817
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterResponse} returns this
|
|
35818
|
+
*/
|
|
35819
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.clearTotalItems = function() {
|
|
35820
|
+
return jspb.Message.setField(this, 2, undefined);
|
|
35821
|
+
};
|
|
35822
|
+
|
|
35823
|
+
|
|
35824
|
+
/**
|
|
35825
|
+
* Returns whether this field is set.
|
|
35826
|
+
* @return {boolean}
|
|
35827
|
+
*/
|
|
35828
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.hasTotalItems = function() {
|
|
35829
|
+
return jspb.Message.getField(this, 2) != null;
|
|
35830
|
+
};
|
|
35831
|
+
|
|
35832
|
+
|
|
35833
|
+
/**
|
|
35834
|
+
* optional bool truncated = 3;
|
|
35835
|
+
* @return {boolean}
|
|
35836
|
+
*/
|
|
35837
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.getTruncated = function() {
|
|
35838
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 3, false));
|
|
35839
|
+
};
|
|
35840
|
+
|
|
35841
|
+
|
|
35842
|
+
/**
|
|
35843
|
+
* @param {boolean} value
|
|
35844
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterResponse} returns this
|
|
35845
|
+
*/
|
|
35846
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.setTruncated = function(value) {
|
|
35847
|
+
return jspb.Message.setField(this, 3, value);
|
|
35848
|
+
};
|
|
35849
|
+
|
|
35850
|
+
|
|
35851
|
+
/**
|
|
35852
|
+
* Clears the field making it undefined.
|
|
35853
|
+
* @return {!proto.game.ResolveGameUuidsForBetHistoryFilterResponse} returns this
|
|
35854
|
+
*/
|
|
35855
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.clearTruncated = function() {
|
|
35856
|
+
return jspb.Message.setField(this, 3, undefined);
|
|
35857
|
+
};
|
|
35858
|
+
|
|
35859
|
+
|
|
35860
|
+
/**
|
|
35861
|
+
* Returns whether this field is set.
|
|
35862
|
+
* @return {boolean}
|
|
35863
|
+
*/
|
|
35864
|
+
proto.game.ResolveGameUuidsForBetHistoryFilterResponse.prototype.hasTruncated = function() {
|
|
35865
|
+
return jspb.Message.getField(this, 3) != null;
|
|
35866
|
+
};
|
|
35867
|
+
|
|
35868
|
+
|
|
35869
|
+
|
|
35870
|
+
|
|
35871
|
+
|
|
35188
35872
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
35189
35873
|
/**
|
|
35190
35874
|
* Creates an object representation of this proto.
|