protobuf-platform 1.0.146 → 1.0.148
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 +1 -0
- package/bonus/bonus_pb.js +49 -1
- package/game/game.proto +12 -11
- package/game/game_pb.js +137 -71
- package/package.json +1 -1
package/bonus/bonus.proto
CHANGED
package/bonus/bonus_pb.js
CHANGED
@@ -6905,7 +6905,8 @@ proto.bonus.GetUserBonusRequest.toObject = function(includeInstance, msg) {
|
|
6905
6905
|
type: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
6906
6906
|
currency: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
6907
6907
|
country: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
6908
|
-
locale: jspb.Message.getFieldWithDefault(msg, 7, "")
|
6908
|
+
locale: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
6909
|
+
userPublicId: jspb.Message.getFieldWithDefault(msg, 8, "")
|
6909
6910
|
};
|
6910
6911
|
|
6911
6912
|
if (includeInstance) {
|
@@ -6970,6 +6971,10 @@ proto.bonus.GetUserBonusRequest.deserializeBinaryFromReader = function(msg, read
|
|
6970
6971
|
var value = /** @type {string} */ (reader.readString());
|
6971
6972
|
msg.setLocale(value);
|
6972
6973
|
break;
|
6974
|
+
case 8:
|
6975
|
+
var value = /** @type {string} */ (reader.readString());
|
6976
|
+
msg.setUserPublicId(value);
|
6977
|
+
break;
|
6973
6978
|
default:
|
6974
6979
|
reader.skipField();
|
6975
6980
|
break;
|
@@ -7048,6 +7053,13 @@ proto.bonus.GetUserBonusRequest.serializeBinaryToWriter = function(message, writ
|
|
7048
7053
|
f
|
7049
7054
|
);
|
7050
7055
|
}
|
7056
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 8));
|
7057
|
+
if (f != null) {
|
7058
|
+
writer.writeString(
|
7059
|
+
8,
|
7060
|
+
f
|
7061
|
+
);
|
7062
|
+
}
|
7051
7063
|
};
|
7052
7064
|
|
7053
7065
|
|
@@ -7285,6 +7297,42 @@ proto.bonus.GetUserBonusRequest.prototype.hasLocale = function() {
|
|
7285
7297
|
};
|
7286
7298
|
|
7287
7299
|
|
7300
|
+
/**
|
7301
|
+
* optional string user_public_id = 8;
|
7302
|
+
* @return {string}
|
7303
|
+
*/
|
7304
|
+
proto.bonus.GetUserBonusRequest.prototype.getUserPublicId = function() {
|
7305
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
7306
|
+
};
|
7307
|
+
|
7308
|
+
|
7309
|
+
/**
|
7310
|
+
* @param {string} value
|
7311
|
+
* @return {!proto.bonus.GetUserBonusRequest} returns this
|
7312
|
+
*/
|
7313
|
+
proto.bonus.GetUserBonusRequest.prototype.setUserPublicId = function(value) {
|
7314
|
+
return jspb.Message.setField(this, 8, value);
|
7315
|
+
};
|
7316
|
+
|
7317
|
+
|
7318
|
+
/**
|
7319
|
+
* Clears the field making it undefined.
|
7320
|
+
* @return {!proto.bonus.GetUserBonusRequest} returns this
|
7321
|
+
*/
|
7322
|
+
proto.bonus.GetUserBonusRequest.prototype.clearUserPublicId = function() {
|
7323
|
+
return jspb.Message.setField(this, 8, undefined);
|
7324
|
+
};
|
7325
|
+
|
7326
|
+
|
7327
|
+
/**
|
7328
|
+
* Returns whether this field is set.
|
7329
|
+
* @return {boolean}
|
7330
|
+
*/
|
7331
|
+
proto.bonus.GetUserBonusRequest.prototype.hasUserPublicId = function() {
|
7332
|
+
return jspb.Message.getField(this, 8) != null;
|
7333
|
+
};
|
7334
|
+
|
7335
|
+
|
7288
7336
|
|
7289
7337
|
/**
|
7290
7338
|
* List of repeated fields within this message type.
|
package/game/game.proto
CHANGED
@@ -426,17 +426,18 @@ message FreeSpinSettingsResponse {
|
|
426
426
|
string data = 1;
|
427
427
|
}
|
428
428
|
message FreeSpinCampaignRequest {
|
429
|
-
string game_uuid = 1;
|
430
|
-
|
431
|
-
string
|
432
|
-
string
|
433
|
-
|
434
|
-
int32
|
435
|
-
int32
|
436
|
-
|
437
|
-
|
438
|
-
optional
|
439
|
-
optional
|
429
|
+
optional string game_uuid = 1;
|
430
|
+
optional int32 game_id = 2;
|
431
|
+
string currency = 3;
|
432
|
+
string player_id = 4;
|
433
|
+
string player_name = 5;
|
434
|
+
int32 valid_from = 6;
|
435
|
+
int32 valid_until = 7;
|
436
|
+
int32 quantity = 8;
|
437
|
+
string freespin_id = 9;
|
438
|
+
optional int32 bet_id = 10;
|
439
|
+
optional float denomination = 11;
|
440
|
+
optional int32 total_bet_id = 12;
|
440
441
|
}
|
441
442
|
message FreeSpinStatusRequest {
|
442
443
|
string free_spin_id = 1;
|
package/game/game_pb.js
CHANGED
@@ -17890,16 +17890,17 @@ proto.game.FreeSpinCampaignRequest.prototype.toObject = function(opt_includeInst
|
|
17890
17890
|
proto.game.FreeSpinCampaignRequest.toObject = function(includeInstance, msg) {
|
17891
17891
|
var f, obj = {
|
17892
17892
|
gameUuid: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
17893
|
-
|
17894
|
-
|
17895
|
-
|
17896
|
-
|
17897
|
-
|
17898
|
-
|
17899
|
-
|
17900
|
-
|
17901
|
-
|
17902
|
-
|
17893
|
+
gameId: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
17894
|
+
currency: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
17895
|
+
playerId: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
17896
|
+
playerName: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
17897
|
+
validFrom: jspb.Message.getFieldWithDefault(msg, 6, 0),
|
17898
|
+
validUntil: jspb.Message.getFieldWithDefault(msg, 7, 0),
|
17899
|
+
quantity: jspb.Message.getFieldWithDefault(msg, 8, 0),
|
17900
|
+
freespinId: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
17901
|
+
betId: jspb.Message.getFieldWithDefault(msg, 10, 0),
|
17902
|
+
denomination: jspb.Message.getFloatingPointFieldWithDefault(msg, 11, 0.0),
|
17903
|
+
totalBetId: jspb.Message.getFieldWithDefault(msg, 12, 0)
|
17903
17904
|
};
|
17904
17905
|
|
17905
17906
|
if (includeInstance) {
|
@@ -17941,42 +17942,46 @@ proto.game.FreeSpinCampaignRequest.deserializeBinaryFromReader = function(msg, r
|
|
17941
17942
|
msg.setGameUuid(value);
|
17942
17943
|
break;
|
17943
17944
|
case 2:
|
17945
|
+
var value = /** @type {number} */ (reader.readInt32());
|
17946
|
+
msg.setGameId(value);
|
17947
|
+
break;
|
17948
|
+
case 3:
|
17944
17949
|
var value = /** @type {string} */ (reader.readString());
|
17945
17950
|
msg.setCurrency(value);
|
17946
17951
|
break;
|
17947
|
-
case
|
17952
|
+
case 4:
|
17948
17953
|
var value = /** @type {string} */ (reader.readString());
|
17949
17954
|
msg.setPlayerId(value);
|
17950
17955
|
break;
|
17951
|
-
case
|
17956
|
+
case 5:
|
17952
17957
|
var value = /** @type {string} */ (reader.readString());
|
17953
17958
|
msg.setPlayerName(value);
|
17954
17959
|
break;
|
17955
|
-
case
|
17960
|
+
case 6:
|
17956
17961
|
var value = /** @type {number} */ (reader.readInt32());
|
17957
17962
|
msg.setValidFrom(value);
|
17958
17963
|
break;
|
17959
|
-
case
|
17964
|
+
case 7:
|
17960
17965
|
var value = /** @type {number} */ (reader.readInt32());
|
17961
17966
|
msg.setValidUntil(value);
|
17962
17967
|
break;
|
17963
|
-
case
|
17968
|
+
case 8:
|
17964
17969
|
var value = /** @type {number} */ (reader.readInt32());
|
17965
17970
|
msg.setQuantity(value);
|
17966
17971
|
break;
|
17967
|
-
case
|
17972
|
+
case 9:
|
17968
17973
|
var value = /** @type {string} */ (reader.readString());
|
17969
17974
|
msg.setFreespinId(value);
|
17970
17975
|
break;
|
17971
|
-
case
|
17976
|
+
case 10:
|
17972
17977
|
var value = /** @type {number} */ (reader.readInt32());
|
17973
17978
|
msg.setBetId(value);
|
17974
17979
|
break;
|
17975
|
-
case
|
17980
|
+
case 11:
|
17976
17981
|
var value = /** @type {number} */ (reader.readFloat());
|
17977
17982
|
msg.setDenomination(value);
|
17978
17983
|
break;
|
17979
|
-
case
|
17984
|
+
case 12:
|
17980
17985
|
var value = /** @type {number} */ (reader.readInt32());
|
17981
17986
|
msg.setTotalBetId(value);
|
17982
17987
|
break;
|
@@ -18009,80 +18014,87 @@ proto.game.FreeSpinCampaignRequest.prototype.serializeBinary = function() {
|
|
18009
18014
|
*/
|
18010
18015
|
proto.game.FreeSpinCampaignRequest.serializeBinaryToWriter = function(message, writer) {
|
18011
18016
|
var f = undefined;
|
18012
|
-
f =
|
18013
|
-
if (f
|
18017
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 1));
|
18018
|
+
if (f != null) {
|
18014
18019
|
writer.writeString(
|
18015
18020
|
1,
|
18016
18021
|
f
|
18017
18022
|
);
|
18018
18023
|
}
|
18024
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 2));
|
18025
|
+
if (f != null) {
|
18026
|
+
writer.writeInt32(
|
18027
|
+
2,
|
18028
|
+
f
|
18029
|
+
);
|
18030
|
+
}
|
18019
18031
|
f = message.getCurrency();
|
18020
18032
|
if (f.length > 0) {
|
18021
18033
|
writer.writeString(
|
18022
|
-
|
18034
|
+
3,
|
18023
18035
|
f
|
18024
18036
|
);
|
18025
18037
|
}
|
18026
18038
|
f = message.getPlayerId();
|
18027
18039
|
if (f.length > 0) {
|
18028
18040
|
writer.writeString(
|
18029
|
-
|
18041
|
+
4,
|
18030
18042
|
f
|
18031
18043
|
);
|
18032
18044
|
}
|
18033
18045
|
f = message.getPlayerName();
|
18034
18046
|
if (f.length > 0) {
|
18035
18047
|
writer.writeString(
|
18036
|
-
|
18048
|
+
5,
|
18037
18049
|
f
|
18038
18050
|
);
|
18039
18051
|
}
|
18040
18052
|
f = message.getValidFrom();
|
18041
18053
|
if (f !== 0) {
|
18042
18054
|
writer.writeInt32(
|
18043
|
-
|
18055
|
+
6,
|
18044
18056
|
f
|
18045
18057
|
);
|
18046
18058
|
}
|
18047
18059
|
f = message.getValidUntil();
|
18048
18060
|
if (f !== 0) {
|
18049
18061
|
writer.writeInt32(
|
18050
|
-
|
18062
|
+
7,
|
18051
18063
|
f
|
18052
18064
|
);
|
18053
18065
|
}
|
18054
18066
|
f = message.getQuantity();
|
18055
18067
|
if (f !== 0) {
|
18056
18068
|
writer.writeInt32(
|
18057
|
-
|
18069
|
+
8,
|
18058
18070
|
f
|
18059
18071
|
);
|
18060
18072
|
}
|
18061
18073
|
f = message.getFreespinId();
|
18062
18074
|
if (f.length > 0) {
|
18063
18075
|
writer.writeString(
|
18064
|
-
|
18076
|
+
9,
|
18065
18077
|
f
|
18066
18078
|
);
|
18067
18079
|
}
|
18068
|
-
f = /** @type {number} */ (jspb.Message.getField(message,
|
18080
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 10));
|
18069
18081
|
if (f != null) {
|
18070
18082
|
writer.writeInt32(
|
18071
|
-
|
18083
|
+
10,
|
18072
18084
|
f
|
18073
18085
|
);
|
18074
18086
|
}
|
18075
|
-
f = /** @type {number} */ (jspb.Message.getField(message,
|
18087
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 11));
|
18076
18088
|
if (f != null) {
|
18077
18089
|
writer.writeFloat(
|
18078
|
-
|
18090
|
+
11,
|
18079
18091
|
f
|
18080
18092
|
);
|
18081
18093
|
}
|
18082
|
-
f = /** @type {number} */ (jspb.Message.getField(message,
|
18094
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 12));
|
18083
18095
|
if (f != null) {
|
18084
18096
|
writer.writeInt32(
|
18085
|
-
|
18097
|
+
12,
|
18086
18098
|
f
|
18087
18099
|
);
|
18088
18100
|
}
|
@@ -18103,16 +18115,70 @@ proto.game.FreeSpinCampaignRequest.prototype.getGameUuid = function() {
|
|
18103
18115
|
* @return {!proto.game.FreeSpinCampaignRequest} returns this
|
18104
18116
|
*/
|
18105
18117
|
proto.game.FreeSpinCampaignRequest.prototype.setGameUuid = function(value) {
|
18106
|
-
return jspb.Message.
|
18118
|
+
return jspb.Message.setField(this, 1, value);
|
18107
18119
|
};
|
18108
18120
|
|
18109
18121
|
|
18110
18122
|
/**
|
18111
|
-
*
|
18123
|
+
* Clears the field making it undefined.
|
18124
|
+
* @return {!proto.game.FreeSpinCampaignRequest} returns this
|
18125
|
+
*/
|
18126
|
+
proto.game.FreeSpinCampaignRequest.prototype.clearGameUuid = function() {
|
18127
|
+
return jspb.Message.setField(this, 1, undefined);
|
18128
|
+
};
|
18129
|
+
|
18130
|
+
|
18131
|
+
/**
|
18132
|
+
* Returns whether this field is set.
|
18133
|
+
* @return {boolean}
|
18134
|
+
*/
|
18135
|
+
proto.game.FreeSpinCampaignRequest.prototype.hasGameUuid = function() {
|
18136
|
+
return jspb.Message.getField(this, 1) != null;
|
18137
|
+
};
|
18138
|
+
|
18139
|
+
|
18140
|
+
/**
|
18141
|
+
* optional int32 game_id = 2;
|
18142
|
+
* @return {number}
|
18143
|
+
*/
|
18144
|
+
proto.game.FreeSpinCampaignRequest.prototype.getGameId = function() {
|
18145
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 0));
|
18146
|
+
};
|
18147
|
+
|
18148
|
+
|
18149
|
+
/**
|
18150
|
+
* @param {number} value
|
18151
|
+
* @return {!proto.game.FreeSpinCampaignRequest} returns this
|
18152
|
+
*/
|
18153
|
+
proto.game.FreeSpinCampaignRequest.prototype.setGameId = function(value) {
|
18154
|
+
return jspb.Message.setField(this, 2, value);
|
18155
|
+
};
|
18156
|
+
|
18157
|
+
|
18158
|
+
/**
|
18159
|
+
* Clears the field making it undefined.
|
18160
|
+
* @return {!proto.game.FreeSpinCampaignRequest} returns this
|
18161
|
+
*/
|
18162
|
+
proto.game.FreeSpinCampaignRequest.prototype.clearGameId = function() {
|
18163
|
+
return jspb.Message.setField(this, 2, undefined);
|
18164
|
+
};
|
18165
|
+
|
18166
|
+
|
18167
|
+
/**
|
18168
|
+
* Returns whether this field is set.
|
18169
|
+
* @return {boolean}
|
18170
|
+
*/
|
18171
|
+
proto.game.FreeSpinCampaignRequest.prototype.hasGameId = function() {
|
18172
|
+
return jspb.Message.getField(this, 2) != null;
|
18173
|
+
};
|
18174
|
+
|
18175
|
+
|
18176
|
+
/**
|
18177
|
+
* optional string currency = 3;
|
18112
18178
|
* @return {string}
|
18113
18179
|
*/
|
18114
18180
|
proto.game.FreeSpinCampaignRequest.prototype.getCurrency = function() {
|
18115
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
18181
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
18116
18182
|
};
|
18117
18183
|
|
18118
18184
|
|
@@ -18121,16 +18187,16 @@ proto.game.FreeSpinCampaignRequest.prototype.getCurrency = function() {
|
|
18121
18187
|
* @return {!proto.game.FreeSpinCampaignRequest} returns this
|
18122
18188
|
*/
|
18123
18189
|
proto.game.FreeSpinCampaignRequest.prototype.setCurrency = function(value) {
|
18124
|
-
return jspb.Message.setProto3StringField(this,
|
18190
|
+
return jspb.Message.setProto3StringField(this, 3, value);
|
18125
18191
|
};
|
18126
18192
|
|
18127
18193
|
|
18128
18194
|
/**
|
18129
|
-
* optional string player_id =
|
18195
|
+
* optional string player_id = 4;
|
18130
18196
|
* @return {string}
|
18131
18197
|
*/
|
18132
18198
|
proto.game.FreeSpinCampaignRequest.prototype.getPlayerId = function() {
|
18133
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
18199
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
18134
18200
|
};
|
18135
18201
|
|
18136
18202
|
|
@@ -18139,16 +18205,16 @@ proto.game.FreeSpinCampaignRequest.prototype.getPlayerId = function() {
|
|
18139
18205
|
* @return {!proto.game.FreeSpinCampaignRequest} returns this
|
18140
18206
|
*/
|
18141
18207
|
proto.game.FreeSpinCampaignRequest.prototype.setPlayerId = function(value) {
|
18142
|
-
return jspb.Message.setProto3StringField(this,
|
18208
|
+
return jspb.Message.setProto3StringField(this, 4, value);
|
18143
18209
|
};
|
18144
18210
|
|
18145
18211
|
|
18146
18212
|
/**
|
18147
|
-
* optional string player_name =
|
18213
|
+
* optional string player_name = 5;
|
18148
18214
|
* @return {string}
|
18149
18215
|
*/
|
18150
18216
|
proto.game.FreeSpinCampaignRequest.prototype.getPlayerName = function() {
|
18151
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
18217
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
18152
18218
|
};
|
18153
18219
|
|
18154
18220
|
|
@@ -18157,16 +18223,16 @@ proto.game.FreeSpinCampaignRequest.prototype.getPlayerName = function() {
|
|
18157
18223
|
* @return {!proto.game.FreeSpinCampaignRequest} returns this
|
18158
18224
|
*/
|
18159
18225
|
proto.game.FreeSpinCampaignRequest.prototype.setPlayerName = function(value) {
|
18160
|
-
return jspb.Message.setProto3StringField(this,
|
18226
|
+
return jspb.Message.setProto3StringField(this, 5, value);
|
18161
18227
|
};
|
18162
18228
|
|
18163
18229
|
|
18164
18230
|
/**
|
18165
|
-
* optional int32 valid_from =
|
18231
|
+
* optional int32 valid_from = 6;
|
18166
18232
|
* @return {number}
|
18167
18233
|
*/
|
18168
18234
|
proto.game.FreeSpinCampaignRequest.prototype.getValidFrom = function() {
|
18169
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this,
|
18235
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 6, 0));
|
18170
18236
|
};
|
18171
18237
|
|
18172
18238
|
|
@@ -18175,16 +18241,16 @@ proto.game.FreeSpinCampaignRequest.prototype.getValidFrom = function() {
|
|
18175
18241
|
* @return {!proto.game.FreeSpinCampaignRequest} returns this
|
18176
18242
|
*/
|
18177
18243
|
proto.game.FreeSpinCampaignRequest.prototype.setValidFrom = function(value) {
|
18178
|
-
return jspb.Message.setProto3IntField(this,
|
18244
|
+
return jspb.Message.setProto3IntField(this, 6, value);
|
18179
18245
|
};
|
18180
18246
|
|
18181
18247
|
|
18182
18248
|
/**
|
18183
|
-
* optional int32 valid_until =
|
18249
|
+
* optional int32 valid_until = 7;
|
18184
18250
|
* @return {number}
|
18185
18251
|
*/
|
18186
18252
|
proto.game.FreeSpinCampaignRequest.prototype.getValidUntil = function() {
|
18187
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this,
|
18253
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 7, 0));
|
18188
18254
|
};
|
18189
18255
|
|
18190
18256
|
|
@@ -18193,16 +18259,16 @@ proto.game.FreeSpinCampaignRequest.prototype.getValidUntil = function() {
|
|
18193
18259
|
* @return {!proto.game.FreeSpinCampaignRequest} returns this
|
18194
18260
|
*/
|
18195
18261
|
proto.game.FreeSpinCampaignRequest.prototype.setValidUntil = function(value) {
|
18196
|
-
return jspb.Message.setProto3IntField(this,
|
18262
|
+
return jspb.Message.setProto3IntField(this, 7, value);
|
18197
18263
|
};
|
18198
18264
|
|
18199
18265
|
|
18200
18266
|
/**
|
18201
|
-
* optional int32 quantity =
|
18267
|
+
* optional int32 quantity = 8;
|
18202
18268
|
* @return {number}
|
18203
18269
|
*/
|
18204
18270
|
proto.game.FreeSpinCampaignRequest.prototype.getQuantity = function() {
|
18205
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this,
|
18271
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 8, 0));
|
18206
18272
|
};
|
18207
18273
|
|
18208
18274
|
|
@@ -18211,16 +18277,16 @@ proto.game.FreeSpinCampaignRequest.prototype.getQuantity = function() {
|
|
18211
18277
|
* @return {!proto.game.FreeSpinCampaignRequest} returns this
|
18212
18278
|
*/
|
18213
18279
|
proto.game.FreeSpinCampaignRequest.prototype.setQuantity = function(value) {
|
18214
|
-
return jspb.Message.setProto3IntField(this,
|
18280
|
+
return jspb.Message.setProto3IntField(this, 8, value);
|
18215
18281
|
};
|
18216
18282
|
|
18217
18283
|
|
18218
18284
|
/**
|
18219
|
-
* optional string freespin_id =
|
18285
|
+
* optional string freespin_id = 9;
|
18220
18286
|
* @return {string}
|
18221
18287
|
*/
|
18222
18288
|
proto.game.FreeSpinCampaignRequest.prototype.getFreespinId = function() {
|
18223
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
18289
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
18224
18290
|
};
|
18225
18291
|
|
18226
18292
|
|
@@ -18229,16 +18295,16 @@ proto.game.FreeSpinCampaignRequest.prototype.getFreespinId = function() {
|
|
18229
18295
|
* @return {!proto.game.FreeSpinCampaignRequest} returns this
|
18230
18296
|
*/
|
18231
18297
|
proto.game.FreeSpinCampaignRequest.prototype.setFreespinId = function(value) {
|
18232
|
-
return jspb.Message.setProto3StringField(this,
|
18298
|
+
return jspb.Message.setProto3StringField(this, 9, value);
|
18233
18299
|
};
|
18234
18300
|
|
18235
18301
|
|
18236
18302
|
/**
|
18237
|
-
* optional int32 bet_id =
|
18303
|
+
* optional int32 bet_id = 10;
|
18238
18304
|
* @return {number}
|
18239
18305
|
*/
|
18240
18306
|
proto.game.FreeSpinCampaignRequest.prototype.getBetId = function() {
|
18241
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this,
|
18307
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 10, 0));
|
18242
18308
|
};
|
18243
18309
|
|
18244
18310
|
|
@@ -18247,7 +18313,7 @@ proto.game.FreeSpinCampaignRequest.prototype.getBetId = function() {
|
|
18247
18313
|
* @return {!proto.game.FreeSpinCampaignRequest} returns this
|
18248
18314
|
*/
|
18249
18315
|
proto.game.FreeSpinCampaignRequest.prototype.setBetId = function(value) {
|
18250
|
-
return jspb.Message.setField(this,
|
18316
|
+
return jspb.Message.setField(this, 10, value);
|
18251
18317
|
};
|
18252
18318
|
|
18253
18319
|
|
@@ -18256,7 +18322,7 @@ proto.game.FreeSpinCampaignRequest.prototype.setBetId = function(value) {
|
|
18256
18322
|
* @return {!proto.game.FreeSpinCampaignRequest} returns this
|
18257
18323
|
*/
|
18258
18324
|
proto.game.FreeSpinCampaignRequest.prototype.clearBetId = function() {
|
18259
|
-
return jspb.Message.setField(this,
|
18325
|
+
return jspb.Message.setField(this, 10, undefined);
|
18260
18326
|
};
|
18261
18327
|
|
18262
18328
|
|
@@ -18265,16 +18331,16 @@ proto.game.FreeSpinCampaignRequest.prototype.clearBetId = function() {
|
|
18265
18331
|
* @return {boolean}
|
18266
18332
|
*/
|
18267
18333
|
proto.game.FreeSpinCampaignRequest.prototype.hasBetId = function() {
|
18268
|
-
return jspb.Message.getField(this,
|
18334
|
+
return jspb.Message.getField(this, 10) != null;
|
18269
18335
|
};
|
18270
18336
|
|
18271
18337
|
|
18272
18338
|
/**
|
18273
|
-
* optional float denomination =
|
18339
|
+
* optional float denomination = 11;
|
18274
18340
|
* @return {number}
|
18275
18341
|
*/
|
18276
18342
|
proto.game.FreeSpinCampaignRequest.prototype.getDenomination = function() {
|
18277
|
-
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this,
|
18343
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 11, 0.0));
|
18278
18344
|
};
|
18279
18345
|
|
18280
18346
|
|
@@ -18283,7 +18349,7 @@ proto.game.FreeSpinCampaignRequest.prototype.getDenomination = function() {
|
|
18283
18349
|
* @return {!proto.game.FreeSpinCampaignRequest} returns this
|
18284
18350
|
*/
|
18285
18351
|
proto.game.FreeSpinCampaignRequest.prototype.setDenomination = function(value) {
|
18286
|
-
return jspb.Message.setField(this,
|
18352
|
+
return jspb.Message.setField(this, 11, value);
|
18287
18353
|
};
|
18288
18354
|
|
18289
18355
|
|
@@ -18292,7 +18358,7 @@ proto.game.FreeSpinCampaignRequest.prototype.setDenomination = function(value) {
|
|
18292
18358
|
* @return {!proto.game.FreeSpinCampaignRequest} returns this
|
18293
18359
|
*/
|
18294
18360
|
proto.game.FreeSpinCampaignRequest.prototype.clearDenomination = function() {
|
18295
|
-
return jspb.Message.setField(this,
|
18361
|
+
return jspb.Message.setField(this, 11, undefined);
|
18296
18362
|
};
|
18297
18363
|
|
18298
18364
|
|
@@ -18301,16 +18367,16 @@ proto.game.FreeSpinCampaignRequest.prototype.clearDenomination = function() {
|
|
18301
18367
|
* @return {boolean}
|
18302
18368
|
*/
|
18303
18369
|
proto.game.FreeSpinCampaignRequest.prototype.hasDenomination = function() {
|
18304
|
-
return jspb.Message.getField(this,
|
18370
|
+
return jspb.Message.getField(this, 11) != null;
|
18305
18371
|
};
|
18306
18372
|
|
18307
18373
|
|
18308
18374
|
/**
|
18309
|
-
* optional int32 total_bet_id =
|
18375
|
+
* optional int32 total_bet_id = 12;
|
18310
18376
|
* @return {number}
|
18311
18377
|
*/
|
18312
18378
|
proto.game.FreeSpinCampaignRequest.prototype.getTotalBetId = function() {
|
18313
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this,
|
18379
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 12, 0));
|
18314
18380
|
};
|
18315
18381
|
|
18316
18382
|
|
@@ -18319,7 +18385,7 @@ proto.game.FreeSpinCampaignRequest.prototype.getTotalBetId = function() {
|
|
18319
18385
|
* @return {!proto.game.FreeSpinCampaignRequest} returns this
|
18320
18386
|
*/
|
18321
18387
|
proto.game.FreeSpinCampaignRequest.prototype.setTotalBetId = function(value) {
|
18322
|
-
return jspb.Message.setField(this,
|
18388
|
+
return jspb.Message.setField(this, 12, value);
|
18323
18389
|
};
|
18324
18390
|
|
18325
18391
|
|
@@ -18328,7 +18394,7 @@ proto.game.FreeSpinCampaignRequest.prototype.setTotalBetId = function(value) {
|
|
18328
18394
|
* @return {!proto.game.FreeSpinCampaignRequest} returns this
|
18329
18395
|
*/
|
18330
18396
|
proto.game.FreeSpinCampaignRequest.prototype.clearTotalBetId = function() {
|
18331
|
-
return jspb.Message.setField(this,
|
18397
|
+
return jspb.Message.setField(this, 12, undefined);
|
18332
18398
|
};
|
18333
18399
|
|
18334
18400
|
|
@@ -18337,7 +18403,7 @@ proto.game.FreeSpinCampaignRequest.prototype.clearTotalBetId = function() {
|
|
18337
18403
|
* @return {boolean}
|
18338
18404
|
*/
|
18339
18405
|
proto.game.FreeSpinCampaignRequest.prototype.hasTotalBetId = function() {
|
18340
|
-
return jspb.Message.getField(this,
|
18406
|
+
return jspb.Message.getField(this, 12) != null;
|
18341
18407
|
};
|
18342
18408
|
|
18343
18409
|
|