protobuf-platform 1.2.508 → 1.2.510
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 +3 -0
- package/cashback/cashback_pb.js +145 -1
- package/package.json +1 -1
package/cashback/cashback.proto
CHANGED
|
@@ -209,5 +209,8 @@ message GetUserCashbackInformationResponse {
|
|
|
209
209
|
optional string content = 5;
|
|
210
210
|
optional string nearest_claim_expires_at = 6;
|
|
211
211
|
repeated UserCashbackInformationDefinitionItem definitions = 7;
|
|
212
|
+
optional string description = 8;
|
|
213
|
+
optional string image = 9;
|
|
214
|
+
optional string image_cdn = 10;
|
|
212
215
|
}
|
|
213
216
|
|
package/cashback/cashback_pb.js
CHANGED
|
@@ -8959,7 +8959,10 @@ proto.cashback.GetUserCashbackInformationResponse.toObject = function(includeIns
|
|
|
8959
8959
|
content: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
8960
8960
|
nearestClaimExpiresAt: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
8961
8961
|
definitionsList: jspb.Message.toObjectList(msg.getDefinitionsList(),
|
|
8962
|
-
proto.cashback.UserCashbackInformationDefinitionItem.toObject, includeInstance)
|
|
8962
|
+
proto.cashback.UserCashbackInformationDefinitionItem.toObject, includeInstance),
|
|
8963
|
+
description: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
8964
|
+
image: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
8965
|
+
imageCdn: jspb.Message.getFieldWithDefault(msg, 10, "")
|
|
8963
8966
|
};
|
|
8964
8967
|
|
|
8965
8968
|
if (includeInstance) {
|
|
@@ -9025,6 +9028,18 @@ proto.cashback.GetUserCashbackInformationResponse.deserializeBinaryFromReader =
|
|
|
9025
9028
|
reader.readMessage(value,proto.cashback.UserCashbackInformationDefinitionItem.deserializeBinaryFromReader);
|
|
9026
9029
|
msg.addDefinitions(value);
|
|
9027
9030
|
break;
|
|
9031
|
+
case 8:
|
|
9032
|
+
var value = /** @type {string} */ (reader.readString());
|
|
9033
|
+
msg.setDescription(value);
|
|
9034
|
+
break;
|
|
9035
|
+
case 9:
|
|
9036
|
+
var value = /** @type {string} */ (reader.readString());
|
|
9037
|
+
msg.setImage(value);
|
|
9038
|
+
break;
|
|
9039
|
+
case 10:
|
|
9040
|
+
var value = /** @type {string} */ (reader.readString());
|
|
9041
|
+
msg.setImageCdn(value);
|
|
9042
|
+
break;
|
|
9028
9043
|
default:
|
|
9029
9044
|
reader.skipField();
|
|
9030
9045
|
break;
|
|
@@ -9104,6 +9119,27 @@ proto.cashback.GetUserCashbackInformationResponse.serializeBinaryToWriter = func
|
|
|
9104
9119
|
proto.cashback.UserCashbackInformationDefinitionItem.serializeBinaryToWriter
|
|
9105
9120
|
);
|
|
9106
9121
|
}
|
|
9122
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 8));
|
|
9123
|
+
if (f != null) {
|
|
9124
|
+
writer.writeString(
|
|
9125
|
+
8,
|
|
9126
|
+
f
|
|
9127
|
+
);
|
|
9128
|
+
}
|
|
9129
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 9));
|
|
9130
|
+
if (f != null) {
|
|
9131
|
+
writer.writeString(
|
|
9132
|
+
9,
|
|
9133
|
+
f
|
|
9134
|
+
);
|
|
9135
|
+
}
|
|
9136
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 10));
|
|
9137
|
+
if (f != null) {
|
|
9138
|
+
writer.writeString(
|
|
9139
|
+
10,
|
|
9140
|
+
f
|
|
9141
|
+
);
|
|
9142
|
+
}
|
|
9107
9143
|
};
|
|
9108
9144
|
|
|
9109
9145
|
|
|
@@ -9307,4 +9343,112 @@ proto.cashback.GetUserCashbackInformationResponse.prototype.clearDefinitionsList
|
|
|
9307
9343
|
};
|
|
9308
9344
|
|
|
9309
9345
|
|
|
9346
|
+
/**
|
|
9347
|
+
* optional string description = 8;
|
|
9348
|
+
* @return {string}
|
|
9349
|
+
*/
|
|
9350
|
+
proto.cashback.GetUserCashbackInformationResponse.prototype.getDescription = function() {
|
|
9351
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
9352
|
+
};
|
|
9353
|
+
|
|
9354
|
+
|
|
9355
|
+
/**
|
|
9356
|
+
* @param {string} value
|
|
9357
|
+
* @return {!proto.cashback.GetUserCashbackInformationResponse} returns this
|
|
9358
|
+
*/
|
|
9359
|
+
proto.cashback.GetUserCashbackInformationResponse.prototype.setDescription = function(value) {
|
|
9360
|
+
return jspb.Message.setField(this, 8, value);
|
|
9361
|
+
};
|
|
9362
|
+
|
|
9363
|
+
|
|
9364
|
+
/**
|
|
9365
|
+
* Clears the field making it undefined.
|
|
9366
|
+
* @return {!proto.cashback.GetUserCashbackInformationResponse} returns this
|
|
9367
|
+
*/
|
|
9368
|
+
proto.cashback.GetUserCashbackInformationResponse.prototype.clearDescription = function() {
|
|
9369
|
+
return jspb.Message.setField(this, 8, undefined);
|
|
9370
|
+
};
|
|
9371
|
+
|
|
9372
|
+
|
|
9373
|
+
/**
|
|
9374
|
+
* Returns whether this field is set.
|
|
9375
|
+
* @return {boolean}
|
|
9376
|
+
*/
|
|
9377
|
+
proto.cashback.GetUserCashbackInformationResponse.prototype.hasDescription = function() {
|
|
9378
|
+
return jspb.Message.getField(this, 8) != null;
|
|
9379
|
+
};
|
|
9380
|
+
|
|
9381
|
+
|
|
9382
|
+
/**
|
|
9383
|
+
* optional string image = 9;
|
|
9384
|
+
* @return {string}
|
|
9385
|
+
*/
|
|
9386
|
+
proto.cashback.GetUserCashbackInformationResponse.prototype.getImage = function() {
|
|
9387
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
9388
|
+
};
|
|
9389
|
+
|
|
9390
|
+
|
|
9391
|
+
/**
|
|
9392
|
+
* @param {string} value
|
|
9393
|
+
* @return {!proto.cashback.GetUserCashbackInformationResponse} returns this
|
|
9394
|
+
*/
|
|
9395
|
+
proto.cashback.GetUserCashbackInformationResponse.prototype.setImage = function(value) {
|
|
9396
|
+
return jspb.Message.setField(this, 9, value);
|
|
9397
|
+
};
|
|
9398
|
+
|
|
9399
|
+
|
|
9400
|
+
/**
|
|
9401
|
+
* Clears the field making it undefined.
|
|
9402
|
+
* @return {!proto.cashback.GetUserCashbackInformationResponse} returns this
|
|
9403
|
+
*/
|
|
9404
|
+
proto.cashback.GetUserCashbackInformationResponse.prototype.clearImage = function() {
|
|
9405
|
+
return jspb.Message.setField(this, 9, undefined);
|
|
9406
|
+
};
|
|
9407
|
+
|
|
9408
|
+
|
|
9409
|
+
/**
|
|
9410
|
+
* Returns whether this field is set.
|
|
9411
|
+
* @return {boolean}
|
|
9412
|
+
*/
|
|
9413
|
+
proto.cashback.GetUserCashbackInformationResponse.prototype.hasImage = function() {
|
|
9414
|
+
return jspb.Message.getField(this, 9) != null;
|
|
9415
|
+
};
|
|
9416
|
+
|
|
9417
|
+
|
|
9418
|
+
/**
|
|
9419
|
+
* optional string image_cdn = 10;
|
|
9420
|
+
* @return {string}
|
|
9421
|
+
*/
|
|
9422
|
+
proto.cashback.GetUserCashbackInformationResponse.prototype.getImageCdn = function() {
|
|
9423
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 10, ""));
|
|
9424
|
+
};
|
|
9425
|
+
|
|
9426
|
+
|
|
9427
|
+
/**
|
|
9428
|
+
* @param {string} value
|
|
9429
|
+
* @return {!proto.cashback.GetUserCashbackInformationResponse} returns this
|
|
9430
|
+
*/
|
|
9431
|
+
proto.cashback.GetUserCashbackInformationResponse.prototype.setImageCdn = function(value) {
|
|
9432
|
+
return jspb.Message.setField(this, 10, value);
|
|
9433
|
+
};
|
|
9434
|
+
|
|
9435
|
+
|
|
9436
|
+
/**
|
|
9437
|
+
* Clears the field making it undefined.
|
|
9438
|
+
* @return {!proto.cashback.GetUserCashbackInformationResponse} returns this
|
|
9439
|
+
*/
|
|
9440
|
+
proto.cashback.GetUserCashbackInformationResponse.prototype.clearImageCdn = function() {
|
|
9441
|
+
return jspb.Message.setField(this, 10, undefined);
|
|
9442
|
+
};
|
|
9443
|
+
|
|
9444
|
+
|
|
9445
|
+
/**
|
|
9446
|
+
* Returns whether this field is set.
|
|
9447
|
+
* @return {boolean}
|
|
9448
|
+
*/
|
|
9449
|
+
proto.cashback.GetUserCashbackInformationResponse.prototype.hasImageCdn = function() {
|
|
9450
|
+
return jspb.Message.getField(this, 10) != null;
|
|
9451
|
+
};
|
|
9452
|
+
|
|
9453
|
+
|
|
9310
9454
|
goog.object.extend(exports, proto.cashback);
|