protobuf-platform 1.2.464 → 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/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.
|