@sniipwebmaster/biller-service-client-grpcweb 0.2.3318 → 0.2.3338
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
|
@@ -6095,7 +6095,8 @@ proto.sniipbillerapi.BillerConfig.toObject = function(includeInstance, msg) {
|
|
|
6095
6095
|
ispayid: msg.getIspayid(),
|
|
6096
6096
|
overpaymentpermitted: msg.getOverpaymentpermitted(),
|
|
6097
6097
|
paymentprocessor: msg.getPaymentprocessor(),
|
|
6098
|
-
paymentmethodgroupid: msg.getPaymentmethodgroupid()
|
|
6098
|
+
paymentmethodgroupid: msg.getPaymentmethodgroupid(),
|
|
6099
|
+
billerconfigid: msg.getBillerconfigid()
|
|
6099
6100
|
};
|
|
6100
6101
|
|
|
6101
6102
|
if (includeInstance) {
|
|
@@ -6209,6 +6210,10 @@ proto.sniipbillerapi.BillerConfig.deserializeBinaryFromReader = function(msg, re
|
|
|
6209
6210
|
var value = /** @type {number} */ (reader.readInt64());
|
|
6210
6211
|
msg.setPaymentmethodgroupid(value);
|
|
6211
6212
|
break;
|
|
6213
|
+
case 21:
|
|
6214
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
6215
|
+
msg.setBillerconfigid(value);
|
|
6216
|
+
break;
|
|
6212
6217
|
default:
|
|
6213
6218
|
reader.skipField();
|
|
6214
6219
|
break;
|
|
@@ -6377,6 +6382,13 @@ proto.sniipbillerapi.BillerConfig.prototype.serializeBinaryToWriter = function (
|
|
|
6377
6382
|
f
|
|
6378
6383
|
);
|
|
6379
6384
|
}
|
|
6385
|
+
f = this.getBillerconfigid();
|
|
6386
|
+
if (f !== 0) {
|
|
6387
|
+
writer.writeInt64(
|
|
6388
|
+
21,
|
|
6389
|
+
f
|
|
6390
|
+
);
|
|
6391
|
+
}
|
|
6380
6392
|
};
|
|
6381
6393
|
|
|
6382
6394
|
|
|
@@ -6726,6 +6738,21 @@ proto.sniipbillerapi.BillerConfig.prototype.setPaymentmethodgroupid = function(v
|
|
|
6726
6738
|
};
|
|
6727
6739
|
|
|
6728
6740
|
|
|
6741
|
+
/**
|
|
6742
|
+
* optional int64 billerConfigId = 21;
|
|
6743
|
+
* @return {number}
|
|
6744
|
+
*/
|
|
6745
|
+
proto.sniipbillerapi.BillerConfig.prototype.getBillerconfigid = function() {
|
|
6746
|
+
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 21, 0));
|
|
6747
|
+
};
|
|
6748
|
+
|
|
6749
|
+
|
|
6750
|
+
/** @param {number} value */
|
|
6751
|
+
proto.sniipbillerapi.BillerConfig.prototype.setBillerconfigid = function(value) {
|
|
6752
|
+
jspb.Message.setField(this, 21, value);
|
|
6753
|
+
};
|
|
6754
|
+
|
|
6755
|
+
|
|
6729
6756
|
|
|
6730
6757
|
/**
|
|
6731
6758
|
* Generated by JsPbCodeGenerator.
|