protobuf-platform 1.0.150 → 1.0.151
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/game/game.proto +12 -0
- package/game/game_grpc_pb.js +22 -0
- package/game/game_pb.js +392 -0
- package/package.json +1 -1
package/game/game.proto
CHANGED
@@ -52,6 +52,7 @@ service Game {
|
|
52
52
|
//Free Spins
|
53
53
|
rpc getFreeSpinsSettings(FreeSpinSettingsRequest) returns (FreeSpinSettingsResponse);
|
54
54
|
rpc setFreeSpins(FreeSpinCampaignRequest) returns (FreeSpinCampaignResponse);
|
55
|
+
rpc setFreeSpinsBonusCampaign(FreeSpinBonusCampaignRequest) returns (FreeSpinCampaignResponse);
|
55
56
|
rpc checkFreeSpins(FreeSpinStatusRequest) returns (FreeSpinCampaignResponse);
|
56
57
|
rpc cancelFreeSpins(FreeSpinStatusRequest) returns (FreeSpinCampaignResponse);
|
57
58
|
//Cross Services
|
@@ -440,6 +441,17 @@ message FreeSpinCampaignRequest {
|
|
440
441
|
optional int32 total_bet_id = 12;
|
441
442
|
optional float spin_amount = 13;
|
442
443
|
}
|
444
|
+
message FreeSpinBonusCampaignRequest {
|
445
|
+
int32 game_id = 1;
|
446
|
+
string currency = 2;
|
447
|
+
string player_id = 3;
|
448
|
+
string player_name = 4;
|
449
|
+
int32 valid_from = 5;
|
450
|
+
int32 valid_until = 6;
|
451
|
+
int32 quantity = 7;
|
452
|
+
string freespin_id = 8;
|
453
|
+
float spin_amount = 9;
|
454
|
+
}
|
443
455
|
message FreeSpinStatusRequest {
|
444
456
|
string free_spin_id = 1;
|
445
457
|
}
|
package/game/game_grpc_pb.js
CHANGED
@@ -114,6 +114,17 @@ function deserialize_game_File(buffer_arg) {
|
|
114
114
|
return game_pb.File.deserializeBinary(new Uint8Array(buffer_arg));
|
115
115
|
}
|
116
116
|
|
117
|
+
function serialize_game_FreeSpinBonusCampaignRequest(arg) {
|
118
|
+
if (!(arg instanceof game_pb.FreeSpinBonusCampaignRequest)) {
|
119
|
+
throw new Error('Expected argument of type game.FreeSpinBonusCampaignRequest');
|
120
|
+
}
|
121
|
+
return Buffer.from(arg.serializeBinary());
|
122
|
+
}
|
123
|
+
|
124
|
+
function deserialize_game_FreeSpinBonusCampaignRequest(buffer_arg) {
|
125
|
+
return game_pb.FreeSpinBonusCampaignRequest.deserializeBinary(new Uint8Array(buffer_arg));
|
126
|
+
}
|
127
|
+
|
117
128
|
function serialize_game_FreeSpinCampaignRequest(arg) {
|
118
129
|
if (!(arg instanceof game_pb.FreeSpinCampaignRequest)) {
|
119
130
|
throw new Error('Expected argument of type game.FreeSpinCampaignRequest');
|
@@ -1146,6 +1157,17 @@ getFreeSpinsSettings: {
|
|
1146
1157
|
responseSerialize: serialize_game_FreeSpinCampaignResponse,
|
1147
1158
|
responseDeserialize: deserialize_game_FreeSpinCampaignResponse,
|
1148
1159
|
},
|
1160
|
+
setFreeSpinsBonusCampaign: {
|
1161
|
+
path: '/game.Game/setFreeSpinsBonusCampaign',
|
1162
|
+
requestStream: false,
|
1163
|
+
responseStream: false,
|
1164
|
+
requestType: game_pb.FreeSpinBonusCampaignRequest,
|
1165
|
+
responseType: game_pb.FreeSpinCampaignResponse,
|
1166
|
+
requestSerialize: serialize_game_FreeSpinBonusCampaignRequest,
|
1167
|
+
requestDeserialize: deserialize_game_FreeSpinBonusCampaignRequest,
|
1168
|
+
responseSerialize: serialize_game_FreeSpinCampaignResponse,
|
1169
|
+
responseDeserialize: deserialize_game_FreeSpinCampaignResponse,
|
1170
|
+
},
|
1149
1171
|
checkFreeSpins: {
|
1150
1172
|
path: '/game.Game/checkFreeSpins',
|
1151
1173
|
requestStream: false,
|
package/game/game_pb.js
CHANGED
@@ -37,6 +37,7 @@ goog.exportSymbol('proto.game.CollectionRequest.RequestCase', null, global);
|
|
37
37
|
goog.exportSymbol('proto.game.CollectionResponse', null, global);
|
38
38
|
goog.exportSymbol('proto.game.CollectionStatusResponse', null, global);
|
39
39
|
goog.exportSymbol('proto.game.File', null, global);
|
40
|
+
goog.exportSymbol('proto.game.FreeSpinBonusCampaignRequest', null, global);
|
40
41
|
goog.exportSymbol('proto.game.FreeSpinCampaignRequest', null, global);
|
41
42
|
goog.exportSymbol('proto.game.FreeSpinCampaignResponse', null, global);
|
42
43
|
goog.exportSymbol('proto.game.FreeSpinSettingsRequest', null, global);
|
@@ -1486,6 +1487,27 @@ if (goog.DEBUG && !COMPILED) {
|
|
1486
1487
|
*/
|
1487
1488
|
proto.game.FreeSpinCampaignRequest.displayName = 'proto.game.FreeSpinCampaignRequest';
|
1488
1489
|
}
|
1490
|
+
/**
|
1491
|
+
* Generated by JsPbCodeGenerator.
|
1492
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
1493
|
+
* server response, or constructed directly in Javascript. The array is used
|
1494
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
1495
|
+
* If no data is provided, the constructed object will be empty, but still
|
1496
|
+
* valid.
|
1497
|
+
* @extends {jspb.Message}
|
1498
|
+
* @constructor
|
1499
|
+
*/
|
1500
|
+
proto.game.FreeSpinBonusCampaignRequest = function(opt_data) {
|
1501
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
1502
|
+
};
|
1503
|
+
goog.inherits(proto.game.FreeSpinBonusCampaignRequest, jspb.Message);
|
1504
|
+
if (goog.DEBUG && !COMPILED) {
|
1505
|
+
/**
|
1506
|
+
* @public
|
1507
|
+
* @override
|
1508
|
+
*/
|
1509
|
+
proto.game.FreeSpinBonusCampaignRequest.displayName = 'proto.game.FreeSpinBonusCampaignRequest';
|
1510
|
+
}
|
1489
1511
|
/**
|
1490
1512
|
* Generated by JsPbCodeGenerator.
|
1491
1513
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
@@ -18458,6 +18480,376 @@ proto.game.FreeSpinCampaignRequest.prototype.hasSpinAmount = function() {
|
|
18458
18480
|
|
18459
18481
|
|
18460
18482
|
|
18483
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
18484
|
+
/**
|
18485
|
+
* Creates an object representation of this proto.
|
18486
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
18487
|
+
* Optional fields that are not set will be set to undefined.
|
18488
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
18489
|
+
* For the list of reserved names please see:
|
18490
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
18491
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
18492
|
+
* JSPB instance for transitional soy proto support:
|
18493
|
+
* http://goto/soy-param-migration
|
18494
|
+
* @return {!Object}
|
18495
|
+
*/
|
18496
|
+
proto.game.FreeSpinBonusCampaignRequest.prototype.toObject = function(opt_includeInstance) {
|
18497
|
+
return proto.game.FreeSpinBonusCampaignRequest.toObject(opt_includeInstance, this);
|
18498
|
+
};
|
18499
|
+
|
18500
|
+
|
18501
|
+
/**
|
18502
|
+
* Static version of the {@see toObject} method.
|
18503
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
18504
|
+
* the JSPB instance for transitional soy proto support:
|
18505
|
+
* http://goto/soy-param-migration
|
18506
|
+
* @param {!proto.game.FreeSpinBonusCampaignRequest} msg The msg instance to transform.
|
18507
|
+
* @return {!Object}
|
18508
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
18509
|
+
*/
|
18510
|
+
proto.game.FreeSpinBonusCampaignRequest.toObject = function(includeInstance, msg) {
|
18511
|
+
var f, obj = {
|
18512
|
+
gameId: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
18513
|
+
currency: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
18514
|
+
playerId: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
18515
|
+
playerName: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
18516
|
+
validFrom: jspb.Message.getFieldWithDefault(msg, 5, 0),
|
18517
|
+
validUntil: jspb.Message.getFieldWithDefault(msg, 6, 0),
|
18518
|
+
quantity: jspb.Message.getFieldWithDefault(msg, 7, 0),
|
18519
|
+
freespinId: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
18520
|
+
spinAmount: jspb.Message.getFloatingPointFieldWithDefault(msg, 9, 0.0)
|
18521
|
+
};
|
18522
|
+
|
18523
|
+
if (includeInstance) {
|
18524
|
+
obj.$jspbMessageInstance = msg;
|
18525
|
+
}
|
18526
|
+
return obj;
|
18527
|
+
};
|
18528
|
+
}
|
18529
|
+
|
18530
|
+
|
18531
|
+
/**
|
18532
|
+
* Deserializes binary data (in protobuf wire format).
|
18533
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
18534
|
+
* @return {!proto.game.FreeSpinBonusCampaignRequest}
|
18535
|
+
*/
|
18536
|
+
proto.game.FreeSpinBonusCampaignRequest.deserializeBinary = function(bytes) {
|
18537
|
+
var reader = new jspb.BinaryReader(bytes);
|
18538
|
+
var msg = new proto.game.FreeSpinBonusCampaignRequest;
|
18539
|
+
return proto.game.FreeSpinBonusCampaignRequest.deserializeBinaryFromReader(msg, reader);
|
18540
|
+
};
|
18541
|
+
|
18542
|
+
|
18543
|
+
/**
|
18544
|
+
* Deserializes binary data (in protobuf wire format) from the
|
18545
|
+
* given reader into the given message object.
|
18546
|
+
* @param {!proto.game.FreeSpinBonusCampaignRequest} msg The message object to deserialize into.
|
18547
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
18548
|
+
* @return {!proto.game.FreeSpinBonusCampaignRequest}
|
18549
|
+
*/
|
18550
|
+
proto.game.FreeSpinBonusCampaignRequest.deserializeBinaryFromReader = function(msg, reader) {
|
18551
|
+
while (reader.nextField()) {
|
18552
|
+
if (reader.isEndGroup()) {
|
18553
|
+
break;
|
18554
|
+
}
|
18555
|
+
var field = reader.getFieldNumber();
|
18556
|
+
switch (field) {
|
18557
|
+
case 1:
|
18558
|
+
var value = /** @type {number} */ (reader.readInt32());
|
18559
|
+
msg.setGameId(value);
|
18560
|
+
break;
|
18561
|
+
case 2:
|
18562
|
+
var value = /** @type {string} */ (reader.readString());
|
18563
|
+
msg.setCurrency(value);
|
18564
|
+
break;
|
18565
|
+
case 3:
|
18566
|
+
var value = /** @type {string} */ (reader.readString());
|
18567
|
+
msg.setPlayerId(value);
|
18568
|
+
break;
|
18569
|
+
case 4:
|
18570
|
+
var value = /** @type {string} */ (reader.readString());
|
18571
|
+
msg.setPlayerName(value);
|
18572
|
+
break;
|
18573
|
+
case 5:
|
18574
|
+
var value = /** @type {number} */ (reader.readInt32());
|
18575
|
+
msg.setValidFrom(value);
|
18576
|
+
break;
|
18577
|
+
case 6:
|
18578
|
+
var value = /** @type {number} */ (reader.readInt32());
|
18579
|
+
msg.setValidUntil(value);
|
18580
|
+
break;
|
18581
|
+
case 7:
|
18582
|
+
var value = /** @type {number} */ (reader.readInt32());
|
18583
|
+
msg.setQuantity(value);
|
18584
|
+
break;
|
18585
|
+
case 8:
|
18586
|
+
var value = /** @type {string} */ (reader.readString());
|
18587
|
+
msg.setFreespinId(value);
|
18588
|
+
break;
|
18589
|
+
case 9:
|
18590
|
+
var value = /** @type {number} */ (reader.readFloat());
|
18591
|
+
msg.setSpinAmount(value);
|
18592
|
+
break;
|
18593
|
+
default:
|
18594
|
+
reader.skipField();
|
18595
|
+
break;
|
18596
|
+
}
|
18597
|
+
}
|
18598
|
+
return msg;
|
18599
|
+
};
|
18600
|
+
|
18601
|
+
|
18602
|
+
/**
|
18603
|
+
* Serializes the message to binary data (in protobuf wire format).
|
18604
|
+
* @return {!Uint8Array}
|
18605
|
+
*/
|
18606
|
+
proto.game.FreeSpinBonusCampaignRequest.prototype.serializeBinary = function() {
|
18607
|
+
var writer = new jspb.BinaryWriter();
|
18608
|
+
proto.game.FreeSpinBonusCampaignRequest.serializeBinaryToWriter(this, writer);
|
18609
|
+
return writer.getResultBuffer();
|
18610
|
+
};
|
18611
|
+
|
18612
|
+
|
18613
|
+
/**
|
18614
|
+
* Serializes the given message to binary data (in protobuf wire
|
18615
|
+
* format), writing to the given BinaryWriter.
|
18616
|
+
* @param {!proto.game.FreeSpinBonusCampaignRequest} message
|
18617
|
+
* @param {!jspb.BinaryWriter} writer
|
18618
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
18619
|
+
*/
|
18620
|
+
proto.game.FreeSpinBonusCampaignRequest.serializeBinaryToWriter = function(message, writer) {
|
18621
|
+
var f = undefined;
|
18622
|
+
f = message.getGameId();
|
18623
|
+
if (f !== 0) {
|
18624
|
+
writer.writeInt32(
|
18625
|
+
1,
|
18626
|
+
f
|
18627
|
+
);
|
18628
|
+
}
|
18629
|
+
f = message.getCurrency();
|
18630
|
+
if (f.length > 0) {
|
18631
|
+
writer.writeString(
|
18632
|
+
2,
|
18633
|
+
f
|
18634
|
+
);
|
18635
|
+
}
|
18636
|
+
f = message.getPlayerId();
|
18637
|
+
if (f.length > 0) {
|
18638
|
+
writer.writeString(
|
18639
|
+
3,
|
18640
|
+
f
|
18641
|
+
);
|
18642
|
+
}
|
18643
|
+
f = message.getPlayerName();
|
18644
|
+
if (f.length > 0) {
|
18645
|
+
writer.writeString(
|
18646
|
+
4,
|
18647
|
+
f
|
18648
|
+
);
|
18649
|
+
}
|
18650
|
+
f = message.getValidFrom();
|
18651
|
+
if (f !== 0) {
|
18652
|
+
writer.writeInt32(
|
18653
|
+
5,
|
18654
|
+
f
|
18655
|
+
);
|
18656
|
+
}
|
18657
|
+
f = message.getValidUntil();
|
18658
|
+
if (f !== 0) {
|
18659
|
+
writer.writeInt32(
|
18660
|
+
6,
|
18661
|
+
f
|
18662
|
+
);
|
18663
|
+
}
|
18664
|
+
f = message.getQuantity();
|
18665
|
+
if (f !== 0) {
|
18666
|
+
writer.writeInt32(
|
18667
|
+
7,
|
18668
|
+
f
|
18669
|
+
);
|
18670
|
+
}
|
18671
|
+
f = message.getFreespinId();
|
18672
|
+
if (f.length > 0) {
|
18673
|
+
writer.writeString(
|
18674
|
+
8,
|
18675
|
+
f
|
18676
|
+
);
|
18677
|
+
}
|
18678
|
+
f = message.getSpinAmount();
|
18679
|
+
if (f !== 0.0) {
|
18680
|
+
writer.writeFloat(
|
18681
|
+
9,
|
18682
|
+
f
|
18683
|
+
);
|
18684
|
+
}
|
18685
|
+
};
|
18686
|
+
|
18687
|
+
|
18688
|
+
/**
|
18689
|
+
* optional int32 game_id = 1;
|
18690
|
+
* @return {number}
|
18691
|
+
*/
|
18692
|
+
proto.game.FreeSpinBonusCampaignRequest.prototype.getGameId = function() {
|
18693
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
|
18694
|
+
};
|
18695
|
+
|
18696
|
+
|
18697
|
+
/**
|
18698
|
+
* @param {number} value
|
18699
|
+
* @return {!proto.game.FreeSpinBonusCampaignRequest} returns this
|
18700
|
+
*/
|
18701
|
+
proto.game.FreeSpinBonusCampaignRequest.prototype.setGameId = function(value) {
|
18702
|
+
return jspb.Message.setProto3IntField(this, 1, value);
|
18703
|
+
};
|
18704
|
+
|
18705
|
+
|
18706
|
+
/**
|
18707
|
+
* optional string currency = 2;
|
18708
|
+
* @return {string}
|
18709
|
+
*/
|
18710
|
+
proto.game.FreeSpinBonusCampaignRequest.prototype.getCurrency = function() {
|
18711
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
18712
|
+
};
|
18713
|
+
|
18714
|
+
|
18715
|
+
/**
|
18716
|
+
* @param {string} value
|
18717
|
+
* @return {!proto.game.FreeSpinBonusCampaignRequest} returns this
|
18718
|
+
*/
|
18719
|
+
proto.game.FreeSpinBonusCampaignRequest.prototype.setCurrency = function(value) {
|
18720
|
+
return jspb.Message.setProto3StringField(this, 2, value);
|
18721
|
+
};
|
18722
|
+
|
18723
|
+
|
18724
|
+
/**
|
18725
|
+
* optional string player_id = 3;
|
18726
|
+
* @return {string}
|
18727
|
+
*/
|
18728
|
+
proto.game.FreeSpinBonusCampaignRequest.prototype.getPlayerId = function() {
|
18729
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
18730
|
+
};
|
18731
|
+
|
18732
|
+
|
18733
|
+
/**
|
18734
|
+
* @param {string} value
|
18735
|
+
* @return {!proto.game.FreeSpinBonusCampaignRequest} returns this
|
18736
|
+
*/
|
18737
|
+
proto.game.FreeSpinBonusCampaignRequest.prototype.setPlayerId = function(value) {
|
18738
|
+
return jspb.Message.setProto3StringField(this, 3, value);
|
18739
|
+
};
|
18740
|
+
|
18741
|
+
|
18742
|
+
/**
|
18743
|
+
* optional string player_name = 4;
|
18744
|
+
* @return {string}
|
18745
|
+
*/
|
18746
|
+
proto.game.FreeSpinBonusCampaignRequest.prototype.getPlayerName = function() {
|
18747
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
18748
|
+
};
|
18749
|
+
|
18750
|
+
|
18751
|
+
/**
|
18752
|
+
* @param {string} value
|
18753
|
+
* @return {!proto.game.FreeSpinBonusCampaignRequest} returns this
|
18754
|
+
*/
|
18755
|
+
proto.game.FreeSpinBonusCampaignRequest.prototype.setPlayerName = function(value) {
|
18756
|
+
return jspb.Message.setProto3StringField(this, 4, value);
|
18757
|
+
};
|
18758
|
+
|
18759
|
+
|
18760
|
+
/**
|
18761
|
+
* optional int32 valid_from = 5;
|
18762
|
+
* @return {number}
|
18763
|
+
*/
|
18764
|
+
proto.game.FreeSpinBonusCampaignRequest.prototype.getValidFrom = function() {
|
18765
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 5, 0));
|
18766
|
+
};
|
18767
|
+
|
18768
|
+
|
18769
|
+
/**
|
18770
|
+
* @param {number} value
|
18771
|
+
* @return {!proto.game.FreeSpinBonusCampaignRequest} returns this
|
18772
|
+
*/
|
18773
|
+
proto.game.FreeSpinBonusCampaignRequest.prototype.setValidFrom = function(value) {
|
18774
|
+
return jspb.Message.setProto3IntField(this, 5, value);
|
18775
|
+
};
|
18776
|
+
|
18777
|
+
|
18778
|
+
/**
|
18779
|
+
* optional int32 valid_until = 6;
|
18780
|
+
* @return {number}
|
18781
|
+
*/
|
18782
|
+
proto.game.FreeSpinBonusCampaignRequest.prototype.getValidUntil = function() {
|
18783
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 6, 0));
|
18784
|
+
};
|
18785
|
+
|
18786
|
+
|
18787
|
+
/**
|
18788
|
+
* @param {number} value
|
18789
|
+
* @return {!proto.game.FreeSpinBonusCampaignRequest} returns this
|
18790
|
+
*/
|
18791
|
+
proto.game.FreeSpinBonusCampaignRequest.prototype.setValidUntil = function(value) {
|
18792
|
+
return jspb.Message.setProto3IntField(this, 6, value);
|
18793
|
+
};
|
18794
|
+
|
18795
|
+
|
18796
|
+
/**
|
18797
|
+
* optional int32 quantity = 7;
|
18798
|
+
* @return {number}
|
18799
|
+
*/
|
18800
|
+
proto.game.FreeSpinBonusCampaignRequest.prototype.getQuantity = function() {
|
18801
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 7, 0));
|
18802
|
+
};
|
18803
|
+
|
18804
|
+
|
18805
|
+
/**
|
18806
|
+
* @param {number} value
|
18807
|
+
* @return {!proto.game.FreeSpinBonusCampaignRequest} returns this
|
18808
|
+
*/
|
18809
|
+
proto.game.FreeSpinBonusCampaignRequest.prototype.setQuantity = function(value) {
|
18810
|
+
return jspb.Message.setProto3IntField(this, 7, value);
|
18811
|
+
};
|
18812
|
+
|
18813
|
+
|
18814
|
+
/**
|
18815
|
+
* optional string freespin_id = 8;
|
18816
|
+
* @return {string}
|
18817
|
+
*/
|
18818
|
+
proto.game.FreeSpinBonusCampaignRequest.prototype.getFreespinId = function() {
|
18819
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
18820
|
+
};
|
18821
|
+
|
18822
|
+
|
18823
|
+
/**
|
18824
|
+
* @param {string} value
|
18825
|
+
* @return {!proto.game.FreeSpinBonusCampaignRequest} returns this
|
18826
|
+
*/
|
18827
|
+
proto.game.FreeSpinBonusCampaignRequest.prototype.setFreespinId = function(value) {
|
18828
|
+
return jspb.Message.setProto3StringField(this, 8, value);
|
18829
|
+
};
|
18830
|
+
|
18831
|
+
|
18832
|
+
/**
|
18833
|
+
* optional float spin_amount = 9;
|
18834
|
+
* @return {number}
|
18835
|
+
*/
|
18836
|
+
proto.game.FreeSpinBonusCampaignRequest.prototype.getSpinAmount = function() {
|
18837
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 9, 0.0));
|
18838
|
+
};
|
18839
|
+
|
18840
|
+
|
18841
|
+
/**
|
18842
|
+
* @param {number} value
|
18843
|
+
* @return {!proto.game.FreeSpinBonusCampaignRequest} returns this
|
18844
|
+
*/
|
18845
|
+
proto.game.FreeSpinBonusCampaignRequest.prototype.setSpinAmount = function(value) {
|
18846
|
+
return jspb.Message.setProto3FloatField(this, 9, value);
|
18847
|
+
};
|
18848
|
+
|
18849
|
+
|
18850
|
+
|
18851
|
+
|
18852
|
+
|
18461
18853
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
18462
18854
|
/**
|
18463
18855
|
* Creates an object representation of this proto.
|