@sniipwebmaster/payment-methods-client-grpcweb 23.4.4825 → 23.4.4845
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/dependancies/service_pb.js +28 -1
- package/package.json +1 -1
|
@@ -4350,7 +4350,8 @@ proto.sniippaymentmethodsserviceapi.BillConfigsForPaymentRequest.prototype.toObj
|
|
|
4350
4350
|
proto.sniippaymentmethodsserviceapi.BillConfigsForPaymentRequest.toObject = function(includeInstance, msg) {
|
|
4351
4351
|
var f, obj = {
|
|
4352
4352
|
billidsList: jspb.Message.getField(msg, 1),
|
|
4353
|
-
paymentmethodid: msg.getPaymentmethodid()
|
|
4353
|
+
paymentmethodid: msg.getPaymentmethodid(),
|
|
4354
|
+
userid: msg.getUserid()
|
|
4354
4355
|
};
|
|
4355
4356
|
|
|
4356
4357
|
if (includeInstance) {
|
|
@@ -4395,6 +4396,10 @@ proto.sniippaymentmethodsserviceapi.BillConfigsForPaymentRequest.deserializeBina
|
|
|
4395
4396
|
var value = /** @type {number} */ (reader.readInt64());
|
|
4396
4397
|
msg.setPaymentmethodid(value);
|
|
4397
4398
|
break;
|
|
4399
|
+
case 3:
|
|
4400
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
4401
|
+
msg.setUserid(value);
|
|
4402
|
+
break;
|
|
4398
4403
|
default:
|
|
4399
4404
|
reader.skipField();
|
|
4400
4405
|
break;
|
|
@@ -4447,6 +4452,13 @@ proto.sniippaymentmethodsserviceapi.BillConfigsForPaymentRequest.prototype.seria
|
|
|
4447
4452
|
f
|
|
4448
4453
|
);
|
|
4449
4454
|
}
|
|
4455
|
+
f = this.getUserid();
|
|
4456
|
+
if (f !== 0) {
|
|
4457
|
+
writer.writeInt64(
|
|
4458
|
+
3,
|
|
4459
|
+
f
|
|
4460
|
+
);
|
|
4461
|
+
}
|
|
4450
4462
|
};
|
|
4451
4463
|
|
|
4452
4464
|
|
|
@@ -4496,6 +4508,21 @@ proto.sniippaymentmethodsserviceapi.BillConfigsForPaymentRequest.prototype.setPa
|
|
|
4496
4508
|
};
|
|
4497
4509
|
|
|
4498
4510
|
|
|
4511
|
+
/**
|
|
4512
|
+
* optional int64 userId = 3;
|
|
4513
|
+
* @return {number}
|
|
4514
|
+
*/
|
|
4515
|
+
proto.sniippaymentmethodsserviceapi.BillConfigsForPaymentRequest.prototype.getUserid = function() {
|
|
4516
|
+
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 3, 0));
|
|
4517
|
+
};
|
|
4518
|
+
|
|
4519
|
+
|
|
4520
|
+
/** @param {number} value */
|
|
4521
|
+
proto.sniippaymentmethodsserviceapi.BillConfigsForPaymentRequest.prototype.setUserid = function(value) {
|
|
4522
|
+
jspb.Message.setField(this, 3, value);
|
|
4523
|
+
};
|
|
4524
|
+
|
|
4525
|
+
|
|
4499
4526
|
|
|
4500
4527
|
/**
|
|
4501
4528
|
* Generated by JsPbCodeGenerator.
|