@sniipwebmaster/payment-methods-client-grpcweb 23.4.4855 → 23.4.4875
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 +45 -1
- package/package.json +1 -1
|
@@ -4351,7 +4351,8 @@ proto.sniippaymentmethodsserviceapi.BillConfigsForPaymentRequest.toObject = func
|
|
|
4351
4351
|
var f, obj = {
|
|
4352
4352
|
billidsList: jspb.Message.getField(msg, 1),
|
|
4353
4353
|
paymentmethodid: msg.getPaymentmethodid(),
|
|
4354
|
-
userid: msg.getUserid()
|
|
4354
|
+
userid: msg.getUserid(),
|
|
4355
|
+
applepaydetail: (f = msg.getApplepaydetail()) && proto.sniippaymentmethodsserviceapi.ApplePayDetail.toObject(includeInstance, f)
|
|
4355
4356
|
};
|
|
4356
4357
|
|
|
4357
4358
|
if (includeInstance) {
|
|
@@ -4400,6 +4401,11 @@ proto.sniippaymentmethodsserviceapi.BillConfigsForPaymentRequest.deserializeBina
|
|
|
4400
4401
|
var value = /** @type {number} */ (reader.readInt64());
|
|
4401
4402
|
msg.setUserid(value);
|
|
4402
4403
|
break;
|
|
4404
|
+
case 4:
|
|
4405
|
+
var value = new proto.sniippaymentmethodsserviceapi.ApplePayDetail;
|
|
4406
|
+
reader.readMessage(value,proto.sniippaymentmethodsserviceapi.ApplePayDetail.deserializeBinaryFromReader);
|
|
4407
|
+
msg.setApplepaydetail(value);
|
|
4408
|
+
break;
|
|
4403
4409
|
default:
|
|
4404
4410
|
reader.skipField();
|
|
4405
4411
|
break;
|
|
@@ -4459,6 +4465,14 @@ proto.sniippaymentmethodsserviceapi.BillConfigsForPaymentRequest.prototype.seria
|
|
|
4459
4465
|
f
|
|
4460
4466
|
);
|
|
4461
4467
|
}
|
|
4468
|
+
f = this.getApplepaydetail();
|
|
4469
|
+
if (f != null) {
|
|
4470
|
+
writer.writeMessage(
|
|
4471
|
+
4,
|
|
4472
|
+
f,
|
|
4473
|
+
proto.sniippaymentmethodsserviceapi.ApplePayDetail.serializeBinaryToWriter
|
|
4474
|
+
);
|
|
4475
|
+
}
|
|
4462
4476
|
};
|
|
4463
4477
|
|
|
4464
4478
|
|
|
@@ -4523,6 +4537,36 @@ proto.sniippaymentmethodsserviceapi.BillConfigsForPaymentRequest.prototype.setUs
|
|
|
4523
4537
|
};
|
|
4524
4538
|
|
|
4525
4539
|
|
|
4540
|
+
/**
|
|
4541
|
+
* optional ApplePayDetail applePayDetail = 4;
|
|
4542
|
+
* @return {proto.sniippaymentmethodsserviceapi.ApplePayDetail}
|
|
4543
|
+
*/
|
|
4544
|
+
proto.sniippaymentmethodsserviceapi.BillConfigsForPaymentRequest.prototype.getApplepaydetail = function() {
|
|
4545
|
+
return /** @type{proto.sniippaymentmethodsserviceapi.ApplePayDetail} */ (
|
|
4546
|
+
jspb.Message.getWrapperField(this, proto.sniippaymentmethodsserviceapi.ApplePayDetail, 4));
|
|
4547
|
+
};
|
|
4548
|
+
|
|
4549
|
+
|
|
4550
|
+
/** @param {proto.sniippaymentmethodsserviceapi.ApplePayDetail|undefined} value */
|
|
4551
|
+
proto.sniippaymentmethodsserviceapi.BillConfigsForPaymentRequest.prototype.setApplepaydetail = function(value) {
|
|
4552
|
+
jspb.Message.setWrapperField(this, 4, value);
|
|
4553
|
+
};
|
|
4554
|
+
|
|
4555
|
+
|
|
4556
|
+
proto.sniippaymentmethodsserviceapi.BillConfigsForPaymentRequest.prototype.clearApplepaydetail = function() {
|
|
4557
|
+
this.setApplepaydetail(undefined);
|
|
4558
|
+
};
|
|
4559
|
+
|
|
4560
|
+
|
|
4561
|
+
/**
|
|
4562
|
+
* Returns whether this field is set.
|
|
4563
|
+
* @return{!boolean}
|
|
4564
|
+
*/
|
|
4565
|
+
proto.sniippaymentmethodsserviceapi.BillConfigsForPaymentRequest.prototype.hasApplepaydetail = function() {
|
|
4566
|
+
return jspb.Message.getField(this, 4) != null;
|
|
4567
|
+
};
|
|
4568
|
+
|
|
4569
|
+
|
|
4526
4570
|
|
|
4527
4571
|
/**
|
|
4528
4572
|
* Generated by JsPbCodeGenerator.
|