protobuf-platform 1.0.112 → 1.0.113
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/bet/bet.proto +12 -8
- package/bet/bet_pb.js +182 -62
- package/package.json +1 -1
package/bet/bet.proto
CHANGED
@@ -20,14 +20,18 @@ message UserSearchRequest {
|
|
20
20
|
message UserBetItem {
|
21
21
|
int32 id = 1;
|
22
22
|
string game_title = 2;
|
23
|
-
string
|
24
|
-
string
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
optional string
|
23
|
+
string game_provider = 3;
|
24
|
+
string action = 4;
|
25
|
+
string balance_type = 5;
|
26
|
+
float balance_real = 6;
|
27
|
+
float balance_bonus = 7;
|
28
|
+
float amount = 8;
|
29
|
+
string type = 9;
|
30
|
+
optional string currency = 10;
|
31
|
+
optional string transaction_id = 11;
|
32
|
+
optional string session_id = 12;
|
33
|
+
optional string round_id = 13;
|
34
|
+
optional string created = 14;
|
31
35
|
}
|
32
36
|
message BetsHistoryResponse {
|
33
37
|
repeated UserBetItem items = 1;
|
package/bet/bet_pb.js
CHANGED
@@ -902,14 +902,18 @@ proto.bet.UserBetItem.toObject = function(includeInstance, msg) {
|
|
902
902
|
var f, obj = {
|
903
903
|
id: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
904
904
|
gameTitle: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
905
|
-
|
906
|
-
|
907
|
-
|
908
|
-
|
909
|
-
|
910
|
-
|
911
|
-
|
912
|
-
|
905
|
+
gameProvider: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
906
|
+
action: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
907
|
+
balanceType: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
908
|
+
balanceReal: jspb.Message.getFloatingPointFieldWithDefault(msg, 6, 0.0),
|
909
|
+
balanceBonus: jspb.Message.getFloatingPointFieldWithDefault(msg, 7, 0.0),
|
910
|
+
amount: jspb.Message.getFloatingPointFieldWithDefault(msg, 8, 0.0),
|
911
|
+
type: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
912
|
+
currency: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
913
|
+
transactionId: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
914
|
+
sessionId: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
915
|
+
roundId: jspb.Message.getFieldWithDefault(msg, 13, ""),
|
916
|
+
created: jspb.Message.getFieldWithDefault(msg, 14, "")
|
913
917
|
};
|
914
918
|
|
915
919
|
if (includeInstance) {
|
@@ -956,33 +960,49 @@ proto.bet.UserBetItem.deserializeBinaryFromReader = function(msg, reader) {
|
|
956
960
|
break;
|
957
961
|
case 3:
|
958
962
|
var value = /** @type {string} */ (reader.readString());
|
959
|
-
msg.
|
963
|
+
msg.setGameProvider(value);
|
960
964
|
break;
|
961
965
|
case 4:
|
962
966
|
var value = /** @type {string} */ (reader.readString());
|
963
|
-
msg.
|
967
|
+
msg.setAction(value);
|
964
968
|
break;
|
965
969
|
case 5:
|
970
|
+
var value = /** @type {string} */ (reader.readString());
|
971
|
+
msg.setBalanceType(value);
|
972
|
+
break;
|
973
|
+
case 6:
|
974
|
+
var value = /** @type {number} */ (reader.readFloat());
|
975
|
+
msg.setBalanceReal(value);
|
976
|
+
break;
|
977
|
+
case 7:
|
978
|
+
var value = /** @type {number} */ (reader.readFloat());
|
979
|
+
msg.setBalanceBonus(value);
|
980
|
+
break;
|
981
|
+
case 8:
|
966
982
|
var value = /** @type {number} */ (reader.readFloat());
|
967
983
|
msg.setAmount(value);
|
968
984
|
break;
|
969
|
-
case
|
985
|
+
case 9:
|
986
|
+
var value = /** @type {string} */ (reader.readString());
|
987
|
+
msg.setType(value);
|
988
|
+
break;
|
989
|
+
case 10:
|
970
990
|
var value = /** @type {string} */ (reader.readString());
|
971
991
|
msg.setCurrency(value);
|
972
992
|
break;
|
973
|
-
case
|
993
|
+
case 11:
|
974
994
|
var value = /** @type {string} */ (reader.readString());
|
975
995
|
msg.setTransactionId(value);
|
976
996
|
break;
|
977
|
-
case
|
997
|
+
case 12:
|
978
998
|
var value = /** @type {string} */ (reader.readString());
|
979
999
|
msg.setSessionId(value);
|
980
1000
|
break;
|
981
|
-
case
|
1001
|
+
case 13:
|
982
1002
|
var value = /** @type {string} */ (reader.readString());
|
983
1003
|
msg.setRoundId(value);
|
984
1004
|
break;
|
985
|
-
case
|
1005
|
+
case 14:
|
986
1006
|
var value = /** @type {string} */ (reader.readString());
|
987
1007
|
msg.setCreated(value);
|
988
1008
|
break;
|
@@ -1029,59 +1049,87 @@ proto.bet.UserBetItem.serializeBinaryToWriter = function(message, writer) {
|
|
1029
1049
|
f
|
1030
1050
|
);
|
1031
1051
|
}
|
1032
|
-
f = message.
|
1052
|
+
f = message.getGameProvider();
|
1033
1053
|
if (f.length > 0) {
|
1034
1054
|
writer.writeString(
|
1035
1055
|
3,
|
1036
1056
|
f
|
1037
1057
|
);
|
1038
1058
|
}
|
1039
|
-
f = message.
|
1059
|
+
f = message.getAction();
|
1040
1060
|
if (f.length > 0) {
|
1041
1061
|
writer.writeString(
|
1042
1062
|
4,
|
1043
1063
|
f
|
1044
1064
|
);
|
1045
1065
|
}
|
1066
|
+
f = message.getBalanceType();
|
1067
|
+
if (f.length > 0) {
|
1068
|
+
writer.writeString(
|
1069
|
+
5,
|
1070
|
+
f
|
1071
|
+
);
|
1072
|
+
}
|
1073
|
+
f = message.getBalanceReal();
|
1074
|
+
if (f !== 0.0) {
|
1075
|
+
writer.writeFloat(
|
1076
|
+
6,
|
1077
|
+
f
|
1078
|
+
);
|
1079
|
+
}
|
1080
|
+
f = message.getBalanceBonus();
|
1081
|
+
if (f !== 0.0) {
|
1082
|
+
writer.writeFloat(
|
1083
|
+
7,
|
1084
|
+
f
|
1085
|
+
);
|
1086
|
+
}
|
1046
1087
|
f = message.getAmount();
|
1047
1088
|
if (f !== 0.0) {
|
1048
1089
|
writer.writeFloat(
|
1049
|
-
|
1090
|
+
8,
|
1091
|
+
f
|
1092
|
+
);
|
1093
|
+
}
|
1094
|
+
f = message.getType();
|
1095
|
+
if (f.length > 0) {
|
1096
|
+
writer.writeString(
|
1097
|
+
9,
|
1050
1098
|
f
|
1051
1099
|
);
|
1052
1100
|
}
|
1053
|
-
f = /** @type {string} */ (jspb.Message.getField(message,
|
1101
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 10));
|
1054
1102
|
if (f != null) {
|
1055
1103
|
writer.writeString(
|
1056
|
-
|
1104
|
+
10,
|
1057
1105
|
f
|
1058
1106
|
);
|
1059
1107
|
}
|
1060
|
-
f = /** @type {string} */ (jspb.Message.getField(message,
|
1108
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 11));
|
1061
1109
|
if (f != null) {
|
1062
1110
|
writer.writeString(
|
1063
|
-
|
1111
|
+
11,
|
1064
1112
|
f
|
1065
1113
|
);
|
1066
1114
|
}
|
1067
|
-
f = /** @type {string} */ (jspb.Message.getField(message,
|
1115
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 12));
|
1068
1116
|
if (f != null) {
|
1069
1117
|
writer.writeString(
|
1070
|
-
|
1118
|
+
12,
|
1071
1119
|
f
|
1072
1120
|
);
|
1073
1121
|
}
|
1074
|
-
f = /** @type {string} */ (jspb.Message.getField(message,
|
1122
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 13));
|
1075
1123
|
if (f != null) {
|
1076
1124
|
writer.writeString(
|
1077
|
-
|
1125
|
+
13,
|
1078
1126
|
f
|
1079
1127
|
);
|
1080
1128
|
}
|
1081
|
-
f = /** @type {string} */ (jspb.Message.getField(message,
|
1129
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 14));
|
1082
1130
|
if (f != null) {
|
1083
1131
|
writer.writeString(
|
1084
|
-
|
1132
|
+
14,
|
1085
1133
|
f
|
1086
1134
|
);
|
1087
1135
|
}
|
@@ -1125,10 +1173,10 @@ proto.bet.UserBetItem.prototype.setGameTitle = function(value) {
|
|
1125
1173
|
|
1126
1174
|
|
1127
1175
|
/**
|
1128
|
-
* optional string
|
1176
|
+
* optional string game_provider = 3;
|
1129
1177
|
* @return {string}
|
1130
1178
|
*/
|
1131
|
-
proto.bet.UserBetItem.prototype.
|
1179
|
+
proto.bet.UserBetItem.prototype.getGameProvider = function() {
|
1132
1180
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
1133
1181
|
};
|
1134
1182
|
|
@@ -1137,16 +1185,16 @@ proto.bet.UserBetItem.prototype.getAction = function() {
|
|
1137
1185
|
* @param {string} value
|
1138
1186
|
* @return {!proto.bet.UserBetItem} returns this
|
1139
1187
|
*/
|
1140
|
-
proto.bet.UserBetItem.prototype.
|
1188
|
+
proto.bet.UserBetItem.prototype.setGameProvider = function(value) {
|
1141
1189
|
return jspb.Message.setProto3StringField(this, 3, value);
|
1142
1190
|
};
|
1143
1191
|
|
1144
1192
|
|
1145
1193
|
/**
|
1146
|
-
* optional string
|
1194
|
+
* optional string action = 4;
|
1147
1195
|
* @return {string}
|
1148
1196
|
*/
|
1149
|
-
proto.bet.UserBetItem.prototype.
|
1197
|
+
proto.bet.UserBetItem.prototype.getAction = function() {
|
1150
1198
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
1151
1199
|
};
|
1152
1200
|
|
@@ -1155,17 +1203,71 @@ proto.bet.UserBetItem.prototype.getBalanceType = function() {
|
|
1155
1203
|
* @param {string} value
|
1156
1204
|
* @return {!proto.bet.UserBetItem} returns this
|
1157
1205
|
*/
|
1158
|
-
proto.bet.UserBetItem.prototype.
|
1206
|
+
proto.bet.UserBetItem.prototype.setAction = function(value) {
|
1159
1207
|
return jspb.Message.setProto3StringField(this, 4, value);
|
1160
1208
|
};
|
1161
1209
|
|
1162
1210
|
|
1163
1211
|
/**
|
1164
|
-
* optional
|
1212
|
+
* optional string balance_type = 5;
|
1213
|
+
* @return {string}
|
1214
|
+
*/
|
1215
|
+
proto.bet.UserBetItem.prototype.getBalanceType = function() {
|
1216
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
1217
|
+
};
|
1218
|
+
|
1219
|
+
|
1220
|
+
/**
|
1221
|
+
* @param {string} value
|
1222
|
+
* @return {!proto.bet.UserBetItem} returns this
|
1223
|
+
*/
|
1224
|
+
proto.bet.UserBetItem.prototype.setBalanceType = function(value) {
|
1225
|
+
return jspb.Message.setProto3StringField(this, 5, value);
|
1226
|
+
};
|
1227
|
+
|
1228
|
+
|
1229
|
+
/**
|
1230
|
+
* optional float balance_real = 6;
|
1231
|
+
* @return {number}
|
1232
|
+
*/
|
1233
|
+
proto.bet.UserBetItem.prototype.getBalanceReal = function() {
|
1234
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 6, 0.0));
|
1235
|
+
};
|
1236
|
+
|
1237
|
+
|
1238
|
+
/**
|
1239
|
+
* @param {number} value
|
1240
|
+
* @return {!proto.bet.UserBetItem} returns this
|
1241
|
+
*/
|
1242
|
+
proto.bet.UserBetItem.prototype.setBalanceReal = function(value) {
|
1243
|
+
return jspb.Message.setProto3FloatField(this, 6, value);
|
1244
|
+
};
|
1245
|
+
|
1246
|
+
|
1247
|
+
/**
|
1248
|
+
* optional float balance_bonus = 7;
|
1249
|
+
* @return {number}
|
1250
|
+
*/
|
1251
|
+
proto.bet.UserBetItem.prototype.getBalanceBonus = function() {
|
1252
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 7, 0.0));
|
1253
|
+
};
|
1254
|
+
|
1255
|
+
|
1256
|
+
/**
|
1257
|
+
* @param {number} value
|
1258
|
+
* @return {!proto.bet.UserBetItem} returns this
|
1259
|
+
*/
|
1260
|
+
proto.bet.UserBetItem.prototype.setBalanceBonus = function(value) {
|
1261
|
+
return jspb.Message.setProto3FloatField(this, 7, value);
|
1262
|
+
};
|
1263
|
+
|
1264
|
+
|
1265
|
+
/**
|
1266
|
+
* optional float amount = 8;
|
1165
1267
|
* @return {number}
|
1166
1268
|
*/
|
1167
1269
|
proto.bet.UserBetItem.prototype.getAmount = function() {
|
1168
|
-
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this,
|
1270
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 8, 0.0));
|
1169
1271
|
};
|
1170
1272
|
|
1171
1273
|
|
@@ -1174,16 +1276,34 @@ proto.bet.UserBetItem.prototype.getAmount = function() {
|
|
1174
1276
|
* @return {!proto.bet.UserBetItem} returns this
|
1175
1277
|
*/
|
1176
1278
|
proto.bet.UserBetItem.prototype.setAmount = function(value) {
|
1177
|
-
return jspb.Message.setProto3FloatField(this,
|
1279
|
+
return jspb.Message.setProto3FloatField(this, 8, value);
|
1280
|
+
};
|
1281
|
+
|
1282
|
+
|
1283
|
+
/**
|
1284
|
+
* optional string type = 9;
|
1285
|
+
* @return {string}
|
1286
|
+
*/
|
1287
|
+
proto.bet.UserBetItem.prototype.getType = function() {
|
1288
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
1178
1289
|
};
|
1179
1290
|
|
1180
1291
|
|
1181
1292
|
/**
|
1182
|
-
*
|
1293
|
+
* @param {string} value
|
1294
|
+
* @return {!proto.bet.UserBetItem} returns this
|
1295
|
+
*/
|
1296
|
+
proto.bet.UserBetItem.prototype.setType = function(value) {
|
1297
|
+
return jspb.Message.setProto3StringField(this, 9, value);
|
1298
|
+
};
|
1299
|
+
|
1300
|
+
|
1301
|
+
/**
|
1302
|
+
* optional string currency = 10;
|
1183
1303
|
* @return {string}
|
1184
1304
|
*/
|
1185
1305
|
proto.bet.UserBetItem.prototype.getCurrency = function() {
|
1186
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
1306
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 10, ""));
|
1187
1307
|
};
|
1188
1308
|
|
1189
1309
|
|
@@ -1192,7 +1312,7 @@ proto.bet.UserBetItem.prototype.getCurrency = function() {
|
|
1192
1312
|
* @return {!proto.bet.UserBetItem} returns this
|
1193
1313
|
*/
|
1194
1314
|
proto.bet.UserBetItem.prototype.setCurrency = function(value) {
|
1195
|
-
return jspb.Message.setField(this,
|
1315
|
+
return jspb.Message.setField(this, 10, value);
|
1196
1316
|
};
|
1197
1317
|
|
1198
1318
|
|
@@ -1201,7 +1321,7 @@ proto.bet.UserBetItem.prototype.setCurrency = function(value) {
|
|
1201
1321
|
* @return {!proto.bet.UserBetItem} returns this
|
1202
1322
|
*/
|
1203
1323
|
proto.bet.UserBetItem.prototype.clearCurrency = function() {
|
1204
|
-
return jspb.Message.setField(this,
|
1324
|
+
return jspb.Message.setField(this, 10, undefined);
|
1205
1325
|
};
|
1206
1326
|
|
1207
1327
|
|
@@ -1210,16 +1330,16 @@ proto.bet.UserBetItem.prototype.clearCurrency = function() {
|
|
1210
1330
|
* @return {boolean}
|
1211
1331
|
*/
|
1212
1332
|
proto.bet.UserBetItem.prototype.hasCurrency = function() {
|
1213
|
-
return jspb.Message.getField(this,
|
1333
|
+
return jspb.Message.getField(this, 10) != null;
|
1214
1334
|
};
|
1215
1335
|
|
1216
1336
|
|
1217
1337
|
/**
|
1218
|
-
* optional string transaction_id =
|
1338
|
+
* optional string transaction_id = 11;
|
1219
1339
|
* @return {string}
|
1220
1340
|
*/
|
1221
1341
|
proto.bet.UserBetItem.prototype.getTransactionId = function() {
|
1222
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
1342
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
|
1223
1343
|
};
|
1224
1344
|
|
1225
1345
|
|
@@ -1228,7 +1348,7 @@ proto.bet.UserBetItem.prototype.getTransactionId = function() {
|
|
1228
1348
|
* @return {!proto.bet.UserBetItem} returns this
|
1229
1349
|
*/
|
1230
1350
|
proto.bet.UserBetItem.prototype.setTransactionId = function(value) {
|
1231
|
-
return jspb.Message.setField(this,
|
1351
|
+
return jspb.Message.setField(this, 11, value);
|
1232
1352
|
};
|
1233
1353
|
|
1234
1354
|
|
@@ -1237,7 +1357,7 @@ proto.bet.UserBetItem.prototype.setTransactionId = function(value) {
|
|
1237
1357
|
* @return {!proto.bet.UserBetItem} returns this
|
1238
1358
|
*/
|
1239
1359
|
proto.bet.UserBetItem.prototype.clearTransactionId = function() {
|
1240
|
-
return jspb.Message.setField(this,
|
1360
|
+
return jspb.Message.setField(this, 11, undefined);
|
1241
1361
|
};
|
1242
1362
|
|
1243
1363
|
|
@@ -1246,16 +1366,16 @@ proto.bet.UserBetItem.prototype.clearTransactionId = function() {
|
|
1246
1366
|
* @return {boolean}
|
1247
1367
|
*/
|
1248
1368
|
proto.bet.UserBetItem.prototype.hasTransactionId = function() {
|
1249
|
-
return jspb.Message.getField(this,
|
1369
|
+
return jspb.Message.getField(this, 11) != null;
|
1250
1370
|
};
|
1251
1371
|
|
1252
1372
|
|
1253
1373
|
/**
|
1254
|
-
* optional string session_id =
|
1374
|
+
* optional string session_id = 12;
|
1255
1375
|
* @return {string}
|
1256
1376
|
*/
|
1257
1377
|
proto.bet.UserBetItem.prototype.getSessionId = function() {
|
1258
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
1378
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 12, ""));
|
1259
1379
|
};
|
1260
1380
|
|
1261
1381
|
|
@@ -1264,7 +1384,7 @@ proto.bet.UserBetItem.prototype.getSessionId = function() {
|
|
1264
1384
|
* @return {!proto.bet.UserBetItem} returns this
|
1265
1385
|
*/
|
1266
1386
|
proto.bet.UserBetItem.prototype.setSessionId = function(value) {
|
1267
|
-
return jspb.Message.setField(this,
|
1387
|
+
return jspb.Message.setField(this, 12, value);
|
1268
1388
|
};
|
1269
1389
|
|
1270
1390
|
|
@@ -1273,7 +1393,7 @@ proto.bet.UserBetItem.prototype.setSessionId = function(value) {
|
|
1273
1393
|
* @return {!proto.bet.UserBetItem} returns this
|
1274
1394
|
*/
|
1275
1395
|
proto.bet.UserBetItem.prototype.clearSessionId = function() {
|
1276
|
-
return jspb.Message.setField(this,
|
1396
|
+
return jspb.Message.setField(this, 12, undefined);
|
1277
1397
|
};
|
1278
1398
|
|
1279
1399
|
|
@@ -1282,16 +1402,16 @@ proto.bet.UserBetItem.prototype.clearSessionId = function() {
|
|
1282
1402
|
* @return {boolean}
|
1283
1403
|
*/
|
1284
1404
|
proto.bet.UserBetItem.prototype.hasSessionId = function() {
|
1285
|
-
return jspb.Message.getField(this,
|
1405
|
+
return jspb.Message.getField(this, 12) != null;
|
1286
1406
|
};
|
1287
1407
|
|
1288
1408
|
|
1289
1409
|
/**
|
1290
|
-
* optional string round_id =
|
1410
|
+
* optional string round_id = 13;
|
1291
1411
|
* @return {string}
|
1292
1412
|
*/
|
1293
1413
|
proto.bet.UserBetItem.prototype.getRoundId = function() {
|
1294
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
1414
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 13, ""));
|
1295
1415
|
};
|
1296
1416
|
|
1297
1417
|
|
@@ -1300,7 +1420,7 @@ proto.bet.UserBetItem.prototype.getRoundId = function() {
|
|
1300
1420
|
* @return {!proto.bet.UserBetItem} returns this
|
1301
1421
|
*/
|
1302
1422
|
proto.bet.UserBetItem.prototype.setRoundId = function(value) {
|
1303
|
-
return jspb.Message.setField(this,
|
1423
|
+
return jspb.Message.setField(this, 13, value);
|
1304
1424
|
};
|
1305
1425
|
|
1306
1426
|
|
@@ -1309,7 +1429,7 @@ proto.bet.UserBetItem.prototype.setRoundId = function(value) {
|
|
1309
1429
|
* @return {!proto.bet.UserBetItem} returns this
|
1310
1430
|
*/
|
1311
1431
|
proto.bet.UserBetItem.prototype.clearRoundId = function() {
|
1312
|
-
return jspb.Message.setField(this,
|
1432
|
+
return jspb.Message.setField(this, 13, undefined);
|
1313
1433
|
};
|
1314
1434
|
|
1315
1435
|
|
@@ -1318,16 +1438,16 @@ proto.bet.UserBetItem.prototype.clearRoundId = function() {
|
|
1318
1438
|
* @return {boolean}
|
1319
1439
|
*/
|
1320
1440
|
proto.bet.UserBetItem.prototype.hasRoundId = function() {
|
1321
|
-
return jspb.Message.getField(this,
|
1441
|
+
return jspb.Message.getField(this, 13) != null;
|
1322
1442
|
};
|
1323
1443
|
|
1324
1444
|
|
1325
1445
|
/**
|
1326
|
-
* optional string created =
|
1446
|
+
* optional string created = 14;
|
1327
1447
|
* @return {string}
|
1328
1448
|
*/
|
1329
1449
|
proto.bet.UserBetItem.prototype.getCreated = function() {
|
1330
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
1450
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 14, ""));
|
1331
1451
|
};
|
1332
1452
|
|
1333
1453
|
|
@@ -1336,7 +1456,7 @@ proto.bet.UserBetItem.prototype.getCreated = function() {
|
|
1336
1456
|
* @return {!proto.bet.UserBetItem} returns this
|
1337
1457
|
*/
|
1338
1458
|
proto.bet.UserBetItem.prototype.setCreated = function(value) {
|
1339
|
-
return jspb.Message.setField(this,
|
1459
|
+
return jspb.Message.setField(this, 14, value);
|
1340
1460
|
};
|
1341
1461
|
|
1342
1462
|
|
@@ -1345,7 +1465,7 @@ proto.bet.UserBetItem.prototype.setCreated = function(value) {
|
|
1345
1465
|
* @return {!proto.bet.UserBetItem} returns this
|
1346
1466
|
*/
|
1347
1467
|
proto.bet.UserBetItem.prototype.clearCreated = function() {
|
1348
|
-
return jspb.Message.setField(this,
|
1468
|
+
return jspb.Message.setField(this, 14, undefined);
|
1349
1469
|
};
|
1350
1470
|
|
1351
1471
|
|
@@ -1354,7 +1474,7 @@ proto.bet.UserBetItem.prototype.clearCreated = function() {
|
|
1354
1474
|
* @return {boolean}
|
1355
1475
|
*/
|
1356
1476
|
proto.bet.UserBetItem.prototype.hasCreated = function() {
|
1357
|
-
return jspb.Message.getField(this,
|
1477
|
+
return jspb.Message.getField(this, 14) != null;
|
1358
1478
|
};
|
1359
1479
|
|
1360
1480
|
|