protobuf-platform 1.0.297 → 1.0.298
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/cashback/cashback.proto +11 -10
- package/cashback/cashback_pb.js +103 -73
- package/package.json +1 -1
package/cashback/cashback.proto
CHANGED
@@ -90,16 +90,17 @@ message CashbackConfigItem {
|
|
90
90
|
//User
|
91
91
|
message UserCashbackItem {
|
92
92
|
int32 cashback_id = 1;
|
93
|
-
string
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
optional float
|
99
|
-
optional float
|
100
|
-
optional
|
101
|
-
optional string
|
102
|
-
optional string
|
93
|
+
string title = 2;
|
94
|
+
string type = 3;
|
95
|
+
int32 level = 4;
|
96
|
+
string currency = 5;
|
97
|
+
float net_losses = 6;
|
98
|
+
optional float min = 7;
|
99
|
+
optional float max = 8;
|
100
|
+
optional float percentage = 9;
|
101
|
+
optional string calculated_date = 10;
|
102
|
+
optional string image = 11;
|
103
|
+
optional string status = 12;
|
103
104
|
}
|
104
105
|
message CashbackUserRequest {
|
105
106
|
int32 user_id = 1;
|
package/cashback/cashback_pb.js
CHANGED
@@ -4143,16 +4143,17 @@ proto.cashback.UserCashbackItem.prototype.toObject = function(opt_includeInstanc
|
|
4143
4143
|
proto.cashback.UserCashbackItem.toObject = function(includeInstance, msg) {
|
4144
4144
|
var f, obj = {
|
4145
4145
|
cashbackId: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
4146
|
-
|
4147
|
-
|
4148
|
-
|
4149
|
-
|
4150
|
-
|
4151
|
-
|
4152
|
-
|
4153
|
-
|
4154
|
-
|
4155
|
-
|
4146
|
+
title: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
4147
|
+
type: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
4148
|
+
level: jspb.Message.getFieldWithDefault(msg, 4, 0),
|
4149
|
+
currency: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
4150
|
+
netLosses: jspb.Message.getFloatingPointFieldWithDefault(msg, 6, 0.0),
|
4151
|
+
min: jspb.Message.getFloatingPointFieldWithDefault(msg, 7, 0.0),
|
4152
|
+
max: jspb.Message.getFloatingPointFieldWithDefault(msg, 8, 0.0),
|
4153
|
+
percentage: jspb.Message.getFloatingPointFieldWithDefault(msg, 9, 0.0),
|
4154
|
+
calculatedDate: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
4155
|
+
image: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
4156
|
+
status: jspb.Message.getFieldWithDefault(msg, 12, "")
|
4156
4157
|
};
|
4157
4158
|
|
4158
4159
|
if (includeInstance) {
|
@@ -4195,41 +4196,45 @@ proto.cashback.UserCashbackItem.deserializeBinaryFromReader = function(msg, read
|
|
4195
4196
|
break;
|
4196
4197
|
case 2:
|
4197
4198
|
var value = /** @type {string} */ (reader.readString());
|
4198
|
-
msg.
|
4199
|
+
msg.setTitle(value);
|
4199
4200
|
break;
|
4200
4201
|
case 3:
|
4202
|
+
var value = /** @type {string} */ (reader.readString());
|
4203
|
+
msg.setType(value);
|
4204
|
+
break;
|
4205
|
+
case 4:
|
4201
4206
|
var value = /** @type {number} */ (reader.readInt32());
|
4202
4207
|
msg.setLevel(value);
|
4203
4208
|
break;
|
4204
|
-
case
|
4209
|
+
case 5:
|
4205
4210
|
var value = /** @type {string} */ (reader.readString());
|
4206
4211
|
msg.setCurrency(value);
|
4207
4212
|
break;
|
4208
|
-
case
|
4213
|
+
case 6:
|
4209
4214
|
var value = /** @type {number} */ (reader.readFloat());
|
4210
4215
|
msg.setNetLosses(value);
|
4211
4216
|
break;
|
4212
|
-
case
|
4217
|
+
case 7:
|
4213
4218
|
var value = /** @type {number} */ (reader.readFloat());
|
4214
4219
|
msg.setMin(value);
|
4215
4220
|
break;
|
4216
|
-
case
|
4221
|
+
case 8:
|
4217
4222
|
var value = /** @type {number} */ (reader.readFloat());
|
4218
4223
|
msg.setMax(value);
|
4219
4224
|
break;
|
4220
|
-
case
|
4225
|
+
case 9:
|
4221
4226
|
var value = /** @type {number} */ (reader.readFloat());
|
4222
4227
|
msg.setPercentage(value);
|
4223
4228
|
break;
|
4224
|
-
case
|
4229
|
+
case 10:
|
4225
4230
|
var value = /** @type {string} */ (reader.readString());
|
4226
4231
|
msg.setCalculatedDate(value);
|
4227
4232
|
break;
|
4228
|
-
case
|
4233
|
+
case 11:
|
4229
4234
|
var value = /** @type {string} */ (reader.readString());
|
4230
4235
|
msg.setImage(value);
|
4231
4236
|
break;
|
4232
|
-
case
|
4237
|
+
case 12:
|
4233
4238
|
var value = /** @type {string} */ (reader.readString());
|
4234
4239
|
msg.setStatus(value);
|
4235
4240
|
break;
|
@@ -4269,36 +4274,36 @@ proto.cashback.UserCashbackItem.serializeBinaryToWriter = function(message, writ
|
|
4269
4274
|
f
|
4270
4275
|
);
|
4271
4276
|
}
|
4272
|
-
f = message.
|
4277
|
+
f = message.getTitle();
|
4273
4278
|
if (f.length > 0) {
|
4274
4279
|
writer.writeString(
|
4275
4280
|
2,
|
4276
4281
|
f
|
4277
4282
|
);
|
4278
4283
|
}
|
4284
|
+
f = message.getType();
|
4285
|
+
if (f.length > 0) {
|
4286
|
+
writer.writeString(
|
4287
|
+
3,
|
4288
|
+
f
|
4289
|
+
);
|
4290
|
+
}
|
4279
4291
|
f = message.getLevel();
|
4280
4292
|
if (f !== 0) {
|
4281
4293
|
writer.writeInt32(
|
4282
|
-
|
4294
|
+
4,
|
4283
4295
|
f
|
4284
4296
|
);
|
4285
4297
|
}
|
4286
4298
|
f = message.getCurrency();
|
4287
4299
|
if (f.length > 0) {
|
4288
4300
|
writer.writeString(
|
4289
|
-
|
4301
|
+
5,
|
4290
4302
|
f
|
4291
4303
|
);
|
4292
4304
|
}
|
4293
4305
|
f = message.getNetLosses();
|
4294
4306
|
if (f !== 0.0) {
|
4295
|
-
writer.writeFloat(
|
4296
|
-
5,
|
4297
|
-
f
|
4298
|
-
);
|
4299
|
-
}
|
4300
|
-
f = /** @type {number} */ (jspb.Message.getField(message, 6));
|
4301
|
-
if (f != null) {
|
4302
4307
|
writer.writeFloat(
|
4303
4308
|
6,
|
4304
4309
|
f
|
@@ -4318,9 +4323,9 @@ proto.cashback.UserCashbackItem.serializeBinaryToWriter = function(message, writ
|
|
4318
4323
|
f
|
4319
4324
|
);
|
4320
4325
|
}
|
4321
|
-
f = /** @type {
|
4326
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 9));
|
4322
4327
|
if (f != null) {
|
4323
|
-
writer.
|
4328
|
+
writer.writeFloat(
|
4324
4329
|
9,
|
4325
4330
|
f
|
4326
4331
|
);
|
@@ -4339,6 +4344,13 @@ proto.cashback.UserCashbackItem.serializeBinaryToWriter = function(message, writ
|
|
4339
4344
|
f
|
4340
4345
|
);
|
4341
4346
|
}
|
4347
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 12));
|
4348
|
+
if (f != null) {
|
4349
|
+
writer.writeString(
|
4350
|
+
12,
|
4351
|
+
f
|
4352
|
+
);
|
4353
|
+
}
|
4342
4354
|
};
|
4343
4355
|
|
4344
4356
|
|
@@ -4361,10 +4373,10 @@ proto.cashback.UserCashbackItem.prototype.setCashbackId = function(value) {
|
|
4361
4373
|
|
4362
4374
|
|
4363
4375
|
/**
|
4364
|
-
* optional string
|
4376
|
+
* optional string title = 2;
|
4365
4377
|
* @return {string}
|
4366
4378
|
*/
|
4367
|
-
proto.cashback.UserCashbackItem.prototype.
|
4379
|
+
proto.cashback.UserCashbackItem.prototype.getTitle = function() {
|
4368
4380
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
4369
4381
|
};
|
4370
4382
|
|
@@ -4373,17 +4385,35 @@ proto.cashback.UserCashbackItem.prototype.getCashbackTitle = function() {
|
|
4373
4385
|
* @param {string} value
|
4374
4386
|
* @return {!proto.cashback.UserCashbackItem} returns this
|
4375
4387
|
*/
|
4376
|
-
proto.cashback.UserCashbackItem.prototype.
|
4388
|
+
proto.cashback.UserCashbackItem.prototype.setTitle = function(value) {
|
4377
4389
|
return jspb.Message.setProto3StringField(this, 2, value);
|
4378
4390
|
};
|
4379
4391
|
|
4380
4392
|
|
4381
4393
|
/**
|
4382
|
-
* optional
|
4394
|
+
* optional string type = 3;
|
4395
|
+
* @return {string}
|
4396
|
+
*/
|
4397
|
+
proto.cashback.UserCashbackItem.prototype.getType = function() {
|
4398
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
4399
|
+
};
|
4400
|
+
|
4401
|
+
|
4402
|
+
/**
|
4403
|
+
* @param {string} value
|
4404
|
+
* @return {!proto.cashback.UserCashbackItem} returns this
|
4405
|
+
*/
|
4406
|
+
proto.cashback.UserCashbackItem.prototype.setType = function(value) {
|
4407
|
+
return jspb.Message.setProto3StringField(this, 3, value);
|
4408
|
+
};
|
4409
|
+
|
4410
|
+
|
4411
|
+
/**
|
4412
|
+
* optional int32 level = 4;
|
4383
4413
|
* @return {number}
|
4384
4414
|
*/
|
4385
4415
|
proto.cashback.UserCashbackItem.prototype.getLevel = function() {
|
4386
|
-
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this,
|
4416
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 4, 0));
|
4387
4417
|
};
|
4388
4418
|
|
4389
4419
|
|
@@ -4392,16 +4422,16 @@ proto.cashback.UserCashbackItem.prototype.getLevel = function() {
|
|
4392
4422
|
* @return {!proto.cashback.UserCashbackItem} returns this
|
4393
4423
|
*/
|
4394
4424
|
proto.cashback.UserCashbackItem.prototype.setLevel = function(value) {
|
4395
|
-
return jspb.Message.setProto3IntField(this,
|
4425
|
+
return jspb.Message.setProto3IntField(this, 4, value);
|
4396
4426
|
};
|
4397
4427
|
|
4398
4428
|
|
4399
4429
|
/**
|
4400
|
-
* optional string currency =
|
4430
|
+
* optional string currency = 5;
|
4401
4431
|
* @return {string}
|
4402
4432
|
*/
|
4403
4433
|
proto.cashback.UserCashbackItem.prototype.getCurrency = function() {
|
4404
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
4434
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
4405
4435
|
};
|
4406
4436
|
|
4407
4437
|
|
@@ -4410,16 +4440,16 @@ proto.cashback.UserCashbackItem.prototype.getCurrency = function() {
|
|
4410
4440
|
* @return {!proto.cashback.UserCashbackItem} returns this
|
4411
4441
|
*/
|
4412
4442
|
proto.cashback.UserCashbackItem.prototype.setCurrency = function(value) {
|
4413
|
-
return jspb.Message.setProto3StringField(this,
|
4443
|
+
return jspb.Message.setProto3StringField(this, 5, value);
|
4414
4444
|
};
|
4415
4445
|
|
4416
4446
|
|
4417
4447
|
/**
|
4418
|
-
* optional float net_losses =
|
4448
|
+
* optional float net_losses = 6;
|
4419
4449
|
* @return {number}
|
4420
4450
|
*/
|
4421
4451
|
proto.cashback.UserCashbackItem.prototype.getNetLosses = function() {
|
4422
|
-
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this,
|
4452
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 6, 0.0));
|
4423
4453
|
};
|
4424
4454
|
|
4425
4455
|
|
@@ -4428,16 +4458,16 @@ proto.cashback.UserCashbackItem.prototype.getNetLosses = function() {
|
|
4428
4458
|
* @return {!proto.cashback.UserCashbackItem} returns this
|
4429
4459
|
*/
|
4430
4460
|
proto.cashback.UserCashbackItem.prototype.setNetLosses = function(value) {
|
4431
|
-
return jspb.Message.setProto3FloatField(this,
|
4461
|
+
return jspb.Message.setProto3FloatField(this, 6, value);
|
4432
4462
|
};
|
4433
4463
|
|
4434
4464
|
|
4435
4465
|
/**
|
4436
|
-
* optional float min =
|
4466
|
+
* optional float min = 7;
|
4437
4467
|
* @return {number}
|
4438
4468
|
*/
|
4439
4469
|
proto.cashback.UserCashbackItem.prototype.getMin = function() {
|
4440
|
-
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this,
|
4470
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 7, 0.0));
|
4441
4471
|
};
|
4442
4472
|
|
4443
4473
|
|
@@ -4446,7 +4476,7 @@ proto.cashback.UserCashbackItem.prototype.getMin = function() {
|
|
4446
4476
|
* @return {!proto.cashback.UserCashbackItem} returns this
|
4447
4477
|
*/
|
4448
4478
|
proto.cashback.UserCashbackItem.prototype.setMin = function(value) {
|
4449
|
-
return jspb.Message.setField(this,
|
4479
|
+
return jspb.Message.setField(this, 7, value);
|
4450
4480
|
};
|
4451
4481
|
|
4452
4482
|
|
@@ -4455,7 +4485,7 @@ proto.cashback.UserCashbackItem.prototype.setMin = function(value) {
|
|
4455
4485
|
* @return {!proto.cashback.UserCashbackItem} returns this
|
4456
4486
|
*/
|
4457
4487
|
proto.cashback.UserCashbackItem.prototype.clearMin = function() {
|
4458
|
-
return jspb.Message.setField(this,
|
4488
|
+
return jspb.Message.setField(this, 7, undefined);
|
4459
4489
|
};
|
4460
4490
|
|
4461
4491
|
|
@@ -4464,16 +4494,16 @@ proto.cashback.UserCashbackItem.prototype.clearMin = function() {
|
|
4464
4494
|
* @return {boolean}
|
4465
4495
|
*/
|
4466
4496
|
proto.cashback.UserCashbackItem.prototype.hasMin = function() {
|
4467
|
-
return jspb.Message.getField(this,
|
4497
|
+
return jspb.Message.getField(this, 7) != null;
|
4468
4498
|
};
|
4469
4499
|
|
4470
4500
|
|
4471
4501
|
/**
|
4472
|
-
* optional float max =
|
4502
|
+
* optional float max = 8;
|
4473
4503
|
* @return {number}
|
4474
4504
|
*/
|
4475
4505
|
proto.cashback.UserCashbackItem.prototype.getMax = function() {
|
4476
|
-
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this,
|
4506
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 8, 0.0));
|
4477
4507
|
};
|
4478
4508
|
|
4479
4509
|
|
@@ -4482,7 +4512,7 @@ proto.cashback.UserCashbackItem.prototype.getMax = function() {
|
|
4482
4512
|
* @return {!proto.cashback.UserCashbackItem} returns this
|
4483
4513
|
*/
|
4484
4514
|
proto.cashback.UserCashbackItem.prototype.setMax = function(value) {
|
4485
|
-
return jspb.Message.setField(this,
|
4515
|
+
return jspb.Message.setField(this, 8, value);
|
4486
4516
|
};
|
4487
4517
|
|
4488
4518
|
|
@@ -4491,7 +4521,7 @@ proto.cashback.UserCashbackItem.prototype.setMax = function(value) {
|
|
4491
4521
|
* @return {!proto.cashback.UserCashbackItem} returns this
|
4492
4522
|
*/
|
4493
4523
|
proto.cashback.UserCashbackItem.prototype.clearMax = function() {
|
4494
|
-
return jspb.Message.setField(this,
|
4524
|
+
return jspb.Message.setField(this, 8, undefined);
|
4495
4525
|
};
|
4496
4526
|
|
4497
4527
|
|
@@ -4500,16 +4530,16 @@ proto.cashback.UserCashbackItem.prototype.clearMax = function() {
|
|
4500
4530
|
* @return {boolean}
|
4501
4531
|
*/
|
4502
4532
|
proto.cashback.UserCashbackItem.prototype.hasMax = function() {
|
4503
|
-
return jspb.Message.getField(this,
|
4533
|
+
return jspb.Message.getField(this, 8) != null;
|
4504
4534
|
};
|
4505
4535
|
|
4506
4536
|
|
4507
4537
|
/**
|
4508
|
-
* optional float percentage =
|
4538
|
+
* optional float percentage = 9;
|
4509
4539
|
* @return {number}
|
4510
4540
|
*/
|
4511
4541
|
proto.cashback.UserCashbackItem.prototype.getPercentage = function() {
|
4512
|
-
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this,
|
4542
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 9, 0.0));
|
4513
4543
|
};
|
4514
4544
|
|
4515
4545
|
|
@@ -4518,7 +4548,7 @@ proto.cashback.UserCashbackItem.prototype.getPercentage = function() {
|
|
4518
4548
|
* @return {!proto.cashback.UserCashbackItem} returns this
|
4519
4549
|
*/
|
4520
4550
|
proto.cashback.UserCashbackItem.prototype.setPercentage = function(value) {
|
4521
|
-
return jspb.Message.setField(this,
|
4551
|
+
return jspb.Message.setField(this, 9, value);
|
4522
4552
|
};
|
4523
4553
|
|
4524
4554
|
|
@@ -4527,7 +4557,7 @@ proto.cashback.UserCashbackItem.prototype.setPercentage = function(value) {
|
|
4527
4557
|
* @return {!proto.cashback.UserCashbackItem} returns this
|
4528
4558
|
*/
|
4529
4559
|
proto.cashback.UserCashbackItem.prototype.clearPercentage = function() {
|
4530
|
-
return jspb.Message.setField(this,
|
4560
|
+
return jspb.Message.setField(this, 9, undefined);
|
4531
4561
|
};
|
4532
4562
|
|
4533
4563
|
|
@@ -4536,16 +4566,16 @@ proto.cashback.UserCashbackItem.prototype.clearPercentage = function() {
|
|
4536
4566
|
* @return {boolean}
|
4537
4567
|
*/
|
4538
4568
|
proto.cashback.UserCashbackItem.prototype.hasPercentage = function() {
|
4539
|
-
return jspb.Message.getField(this,
|
4569
|
+
return jspb.Message.getField(this, 9) != null;
|
4540
4570
|
};
|
4541
4571
|
|
4542
4572
|
|
4543
4573
|
/**
|
4544
|
-
* optional string calculated_date =
|
4574
|
+
* optional string calculated_date = 10;
|
4545
4575
|
* @return {string}
|
4546
4576
|
*/
|
4547
4577
|
proto.cashback.UserCashbackItem.prototype.getCalculatedDate = function() {
|
4548
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
4578
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 10, ""));
|
4549
4579
|
};
|
4550
4580
|
|
4551
4581
|
|
@@ -4554,7 +4584,7 @@ proto.cashback.UserCashbackItem.prototype.getCalculatedDate = function() {
|
|
4554
4584
|
* @return {!proto.cashback.UserCashbackItem} returns this
|
4555
4585
|
*/
|
4556
4586
|
proto.cashback.UserCashbackItem.prototype.setCalculatedDate = function(value) {
|
4557
|
-
return jspb.Message.setField(this,
|
4587
|
+
return jspb.Message.setField(this, 10, value);
|
4558
4588
|
};
|
4559
4589
|
|
4560
4590
|
|
@@ -4563,7 +4593,7 @@ proto.cashback.UserCashbackItem.prototype.setCalculatedDate = function(value) {
|
|
4563
4593
|
* @return {!proto.cashback.UserCashbackItem} returns this
|
4564
4594
|
*/
|
4565
4595
|
proto.cashback.UserCashbackItem.prototype.clearCalculatedDate = function() {
|
4566
|
-
return jspb.Message.setField(this,
|
4596
|
+
return jspb.Message.setField(this, 10, undefined);
|
4567
4597
|
};
|
4568
4598
|
|
4569
4599
|
|
@@ -4572,16 +4602,16 @@ proto.cashback.UserCashbackItem.prototype.clearCalculatedDate = function() {
|
|
4572
4602
|
* @return {boolean}
|
4573
4603
|
*/
|
4574
4604
|
proto.cashback.UserCashbackItem.prototype.hasCalculatedDate = function() {
|
4575
|
-
return jspb.Message.getField(this,
|
4605
|
+
return jspb.Message.getField(this, 10) != null;
|
4576
4606
|
};
|
4577
4607
|
|
4578
4608
|
|
4579
4609
|
/**
|
4580
|
-
* optional string image =
|
4610
|
+
* optional string image = 11;
|
4581
4611
|
* @return {string}
|
4582
4612
|
*/
|
4583
4613
|
proto.cashback.UserCashbackItem.prototype.getImage = function() {
|
4584
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
4614
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
|
4585
4615
|
};
|
4586
4616
|
|
4587
4617
|
|
@@ -4590,7 +4620,7 @@ proto.cashback.UserCashbackItem.prototype.getImage = function() {
|
|
4590
4620
|
* @return {!proto.cashback.UserCashbackItem} returns this
|
4591
4621
|
*/
|
4592
4622
|
proto.cashback.UserCashbackItem.prototype.setImage = function(value) {
|
4593
|
-
return jspb.Message.setField(this,
|
4623
|
+
return jspb.Message.setField(this, 11, value);
|
4594
4624
|
};
|
4595
4625
|
|
4596
4626
|
|
@@ -4599,7 +4629,7 @@ proto.cashback.UserCashbackItem.prototype.setImage = function(value) {
|
|
4599
4629
|
* @return {!proto.cashback.UserCashbackItem} returns this
|
4600
4630
|
*/
|
4601
4631
|
proto.cashback.UserCashbackItem.prototype.clearImage = function() {
|
4602
|
-
return jspb.Message.setField(this,
|
4632
|
+
return jspb.Message.setField(this, 11, undefined);
|
4603
4633
|
};
|
4604
4634
|
|
4605
4635
|
|
@@ -4608,16 +4638,16 @@ proto.cashback.UserCashbackItem.prototype.clearImage = function() {
|
|
4608
4638
|
* @return {boolean}
|
4609
4639
|
*/
|
4610
4640
|
proto.cashback.UserCashbackItem.prototype.hasImage = function() {
|
4611
|
-
return jspb.Message.getField(this,
|
4641
|
+
return jspb.Message.getField(this, 11) != null;
|
4612
4642
|
};
|
4613
4643
|
|
4614
4644
|
|
4615
4645
|
/**
|
4616
|
-
* optional string status =
|
4646
|
+
* optional string status = 12;
|
4617
4647
|
* @return {string}
|
4618
4648
|
*/
|
4619
4649
|
proto.cashback.UserCashbackItem.prototype.getStatus = function() {
|
4620
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
4650
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 12, ""));
|
4621
4651
|
};
|
4622
4652
|
|
4623
4653
|
|
@@ -4626,7 +4656,7 @@ proto.cashback.UserCashbackItem.prototype.getStatus = function() {
|
|
4626
4656
|
* @return {!proto.cashback.UserCashbackItem} returns this
|
4627
4657
|
*/
|
4628
4658
|
proto.cashback.UserCashbackItem.prototype.setStatus = function(value) {
|
4629
|
-
return jspb.Message.setField(this,
|
4659
|
+
return jspb.Message.setField(this, 12, value);
|
4630
4660
|
};
|
4631
4661
|
|
4632
4662
|
|
@@ -4635,7 +4665,7 @@ proto.cashback.UserCashbackItem.prototype.setStatus = function(value) {
|
|
4635
4665
|
* @return {!proto.cashback.UserCashbackItem} returns this
|
4636
4666
|
*/
|
4637
4667
|
proto.cashback.UserCashbackItem.prototype.clearStatus = function() {
|
4638
|
-
return jspb.Message.setField(this,
|
4668
|
+
return jspb.Message.setField(this, 12, undefined);
|
4639
4669
|
};
|
4640
4670
|
|
4641
4671
|
|
@@ -4644,7 +4674,7 @@ proto.cashback.UserCashbackItem.prototype.clearStatus = function() {
|
|
4644
4674
|
* @return {boolean}
|
4645
4675
|
*/
|
4646
4676
|
proto.cashback.UserCashbackItem.prototype.hasStatus = function() {
|
4647
|
-
return jspb.Message.getField(this,
|
4677
|
+
return jspb.Message.getField(this, 12) != null;
|
4648
4678
|
};
|
4649
4679
|
|
4650
4680
|
|