@sniipwebmaster/biller-service-client-grpcweb 0.2.2876 → 0.2.2886
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 +82 -217
- package/package.json +1 -1
|
@@ -955,12 +955,11 @@ proto.sniipbillerapi.AddBillerConfigRequest.toObject = function(includeInstance,
|
|
|
955
955
|
minamountpermitted: msg.getMinamountpermitted(),
|
|
956
956
|
parentbillerid: msg.getParentbillerid(),
|
|
957
957
|
partialpaymentpermitted: msg.getPartialpaymentpermitted(),
|
|
958
|
-
paymentgatewayid: msg.getPaymentgatewayid(),
|
|
959
958
|
qrcodeconfig: (f = msg.getQrcodeconfig()) && proto.sniipbillerapi.QRCodeConfigRoot.toObject(includeInstance, f),
|
|
960
|
-
surchargerate: msg.getSurchargerate(),
|
|
961
959
|
trimreferencenumber: msg.getTrimreferencenumber(),
|
|
962
960
|
billerid: msg.getBillerid(),
|
|
963
|
-
overpaymentpermitted: msg.getOverpaymentpermitted()
|
|
961
|
+
overpaymentpermitted: msg.getOverpaymentpermitted(),
|
|
962
|
+
paymentprocessor: msg.getPaymentprocessor()
|
|
964
963
|
};
|
|
965
964
|
|
|
966
965
|
if (includeInstance) {
|
|
@@ -1030,19 +1029,11 @@ proto.sniipbillerapi.AddBillerConfigRequest.deserializeBinaryFromReader = functi
|
|
|
1030
1029
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
1031
1030
|
msg.setPartialpaymentpermitted(value);
|
|
1032
1031
|
break;
|
|
1033
|
-
case 9:
|
|
1034
|
-
var value = /** @type {number} */ (reader.readInt64());
|
|
1035
|
-
msg.setPaymentgatewayid(value);
|
|
1036
|
-
break;
|
|
1037
1032
|
case 10:
|
|
1038
1033
|
var value = new proto.sniipbillerapi.QRCodeConfigRoot;
|
|
1039
1034
|
reader.readMessage(value,proto.sniipbillerapi.QRCodeConfigRoot.deserializeBinaryFromReader);
|
|
1040
1035
|
msg.setQrcodeconfig(value);
|
|
1041
1036
|
break;
|
|
1042
|
-
case 11:
|
|
1043
|
-
var value = /** @type {number} */ (reader.readDouble());
|
|
1044
|
-
msg.setSurchargerate(value);
|
|
1045
|
-
break;
|
|
1046
1037
|
case 12:
|
|
1047
1038
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
1048
1039
|
msg.setTrimreferencenumber(value);
|
|
@@ -1055,6 +1046,10 @@ proto.sniipbillerapi.AddBillerConfigRequest.deserializeBinaryFromReader = functi
|
|
|
1055
1046
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
1056
1047
|
msg.setOverpaymentpermitted(value);
|
|
1057
1048
|
break;
|
|
1049
|
+
case 15:
|
|
1050
|
+
var value = /** @type {string} */ (reader.readString());
|
|
1051
|
+
msg.setPaymentprocessor(value);
|
|
1052
|
+
break;
|
|
1058
1053
|
default:
|
|
1059
1054
|
reader.skipField();
|
|
1060
1055
|
break;
|
|
@@ -1149,13 +1144,6 @@ proto.sniipbillerapi.AddBillerConfigRequest.prototype.serializeBinaryToWriter =
|
|
|
1149
1144
|
f
|
|
1150
1145
|
);
|
|
1151
1146
|
}
|
|
1152
|
-
f = this.getPaymentgatewayid();
|
|
1153
|
-
if (f !== 0) {
|
|
1154
|
-
writer.writeInt64(
|
|
1155
|
-
9,
|
|
1156
|
-
f
|
|
1157
|
-
);
|
|
1158
|
-
}
|
|
1159
1147
|
f = this.getQrcodeconfig();
|
|
1160
1148
|
if (f != null) {
|
|
1161
1149
|
writer.writeMessage(
|
|
@@ -1164,13 +1152,6 @@ proto.sniipbillerapi.AddBillerConfigRequest.prototype.serializeBinaryToWriter =
|
|
|
1164
1152
|
proto.sniipbillerapi.QRCodeConfigRoot.serializeBinaryToWriter
|
|
1165
1153
|
);
|
|
1166
1154
|
}
|
|
1167
|
-
f = this.getSurchargerate();
|
|
1168
|
-
if (f !== 0.0) {
|
|
1169
|
-
writer.writeDouble(
|
|
1170
|
-
11,
|
|
1171
|
-
f
|
|
1172
|
-
);
|
|
1173
|
-
}
|
|
1174
1155
|
f = this.getTrimreferencenumber();
|
|
1175
1156
|
if (f) {
|
|
1176
1157
|
writer.writeBool(
|
|
@@ -1192,6 +1173,13 @@ proto.sniipbillerapi.AddBillerConfigRequest.prototype.serializeBinaryToWriter =
|
|
|
1192
1173
|
f
|
|
1193
1174
|
);
|
|
1194
1175
|
}
|
|
1176
|
+
f = this.getPaymentprocessor();
|
|
1177
|
+
if (f.length > 0) {
|
|
1178
|
+
writer.writeString(
|
|
1179
|
+
15,
|
|
1180
|
+
f
|
|
1181
|
+
);
|
|
1182
|
+
}
|
|
1195
1183
|
};
|
|
1196
1184
|
|
|
1197
1185
|
|
|
@@ -1337,21 +1325,6 @@ proto.sniipbillerapi.AddBillerConfigRequest.prototype.setPartialpaymentpermitted
|
|
|
1337
1325
|
};
|
|
1338
1326
|
|
|
1339
1327
|
|
|
1340
|
-
/**
|
|
1341
|
-
* optional int64 paymentGatewayId = 9;
|
|
1342
|
-
* @return {number}
|
|
1343
|
-
*/
|
|
1344
|
-
proto.sniipbillerapi.AddBillerConfigRequest.prototype.getPaymentgatewayid = function() {
|
|
1345
|
-
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 9, 0));
|
|
1346
|
-
};
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
/** @param {number} value */
|
|
1350
|
-
proto.sniipbillerapi.AddBillerConfigRequest.prototype.setPaymentgatewayid = function(value) {
|
|
1351
|
-
jspb.Message.setField(this, 9, value);
|
|
1352
|
-
};
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
1328
|
/**
|
|
1356
1329
|
* optional QRCodeConfigRoot qrCodeConfig = 10;
|
|
1357
1330
|
* @return {proto.sniipbillerapi.QRCodeConfigRoot}
|
|
@@ -1382,21 +1355,6 @@ proto.sniipbillerapi.AddBillerConfigRequest.prototype.hasQrcodeconfig = function
|
|
|
1382
1355
|
};
|
|
1383
1356
|
|
|
1384
1357
|
|
|
1385
|
-
/**
|
|
1386
|
-
* optional double surchargeRate = 11;
|
|
1387
|
-
* @return {number}
|
|
1388
|
-
*/
|
|
1389
|
-
proto.sniipbillerapi.AddBillerConfigRequest.prototype.getSurchargerate = function() {
|
|
1390
|
-
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 11, 0));
|
|
1391
|
-
};
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
/** @param {number} value */
|
|
1395
|
-
proto.sniipbillerapi.AddBillerConfigRequest.prototype.setSurchargerate = function(value) {
|
|
1396
|
-
jspb.Message.setField(this, 11, value);
|
|
1397
|
-
};
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
1358
|
/**
|
|
1401
1359
|
* optional bool trimReferenceNumber = 12;
|
|
1402
1360
|
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
@@ -1446,6 +1404,21 @@ proto.sniipbillerapi.AddBillerConfigRequest.prototype.setOverpaymentpermitted =
|
|
|
1446
1404
|
};
|
|
1447
1405
|
|
|
1448
1406
|
|
|
1407
|
+
/**
|
|
1408
|
+
* optional string paymentProcessor = 15;
|
|
1409
|
+
* @return {string}
|
|
1410
|
+
*/
|
|
1411
|
+
proto.sniipbillerapi.AddBillerConfigRequest.prototype.getPaymentprocessor = function() {
|
|
1412
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 15, ""));
|
|
1413
|
+
};
|
|
1414
|
+
|
|
1415
|
+
|
|
1416
|
+
/** @param {string} value */
|
|
1417
|
+
proto.sniipbillerapi.AddBillerConfigRequest.prototype.setPaymentprocessor = function(value) {
|
|
1418
|
+
jspb.Message.setField(this, 15, value);
|
|
1419
|
+
};
|
|
1420
|
+
|
|
1421
|
+
|
|
1449
1422
|
|
|
1450
1423
|
/**
|
|
1451
1424
|
* Generated by JsPbCodeGenerator.
|
|
@@ -5851,13 +5824,12 @@ proto.sniipbillerapi.BillerConfig.toObject = function(includeInstance, msg) {
|
|
|
5851
5824
|
minamountpermitted: msg.getMinamountpermitted(),
|
|
5852
5825
|
parentbillerid: msg.getParentbillerid(),
|
|
5853
5826
|
partialpaymentpermitted: msg.getPartialpaymentpermitted(),
|
|
5854
|
-
paymentgatewayid: msg.getPaymentgatewayid(),
|
|
5855
5827
|
qrcodeconfig: (f = msg.getQrcodeconfig()) && proto.sniipbillerapi.QRCodeConfigRoot.toObject(includeInstance, f),
|
|
5856
|
-
surchargerate: msg.getSurchargerate(),
|
|
5857
5828
|
trimreferencenumber: msg.getTrimreferencenumber(),
|
|
5858
5829
|
payidaccount: (f = msg.getPayidaccount()) && proto.sniipbillerapi.PayIdAccount.toObject(includeInstance, f),
|
|
5859
5830
|
ispayid: msg.getIspayid(),
|
|
5860
|
-
overpaymentpermitted: msg.getOverpaymentpermitted()
|
|
5831
|
+
overpaymentpermitted: msg.getOverpaymentpermitted(),
|
|
5832
|
+
paymentprocessor: msg.getPaymentprocessor()
|
|
5861
5833
|
};
|
|
5862
5834
|
|
|
5863
5835
|
if (includeInstance) {
|
|
@@ -5940,19 +5912,11 @@ proto.sniipbillerapi.BillerConfig.deserializeBinaryFromReader = function(msg, re
|
|
|
5940
5912
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
5941
5913
|
msg.setPartialpaymentpermitted(value);
|
|
5942
5914
|
break;
|
|
5943
|
-
case 12:
|
|
5944
|
-
var value = /** @type {number} */ (reader.readInt64());
|
|
5945
|
-
msg.setPaymentgatewayid(value);
|
|
5946
|
-
break;
|
|
5947
5915
|
case 13:
|
|
5948
5916
|
var value = new proto.sniipbillerapi.QRCodeConfigRoot;
|
|
5949
5917
|
reader.readMessage(value,proto.sniipbillerapi.QRCodeConfigRoot.deserializeBinaryFromReader);
|
|
5950
5918
|
msg.setQrcodeconfig(value);
|
|
5951
5919
|
break;
|
|
5952
|
-
case 14:
|
|
5953
|
-
var value = /** @type {number} */ (reader.readDouble());
|
|
5954
|
-
msg.setSurchargerate(value);
|
|
5955
|
-
break;
|
|
5956
5920
|
case 15:
|
|
5957
5921
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
5958
5922
|
msg.setTrimreferencenumber(value);
|
|
@@ -5970,6 +5934,10 @@ proto.sniipbillerapi.BillerConfig.deserializeBinaryFromReader = function(msg, re
|
|
|
5970
5934
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
5971
5935
|
msg.setOverpaymentpermitted(value);
|
|
5972
5936
|
break;
|
|
5937
|
+
case 19:
|
|
5938
|
+
var value = /** @type {string} */ (reader.readString());
|
|
5939
|
+
msg.setPaymentprocessor(value);
|
|
5940
|
+
break;
|
|
5973
5941
|
default:
|
|
5974
5942
|
reader.skipField();
|
|
5975
5943
|
break;
|
|
@@ -6086,13 +6054,6 @@ proto.sniipbillerapi.BillerConfig.prototype.serializeBinaryToWriter = function (
|
|
|
6086
6054
|
f
|
|
6087
6055
|
);
|
|
6088
6056
|
}
|
|
6089
|
-
f = this.getPaymentgatewayid();
|
|
6090
|
-
if (f !== 0) {
|
|
6091
|
-
writer.writeInt64(
|
|
6092
|
-
12,
|
|
6093
|
-
f
|
|
6094
|
-
);
|
|
6095
|
-
}
|
|
6096
6057
|
f = this.getQrcodeconfig();
|
|
6097
6058
|
if (f != null) {
|
|
6098
6059
|
writer.writeMessage(
|
|
@@ -6101,13 +6062,6 @@ proto.sniipbillerapi.BillerConfig.prototype.serializeBinaryToWriter = function (
|
|
|
6101
6062
|
proto.sniipbillerapi.QRCodeConfigRoot.serializeBinaryToWriter
|
|
6102
6063
|
);
|
|
6103
6064
|
}
|
|
6104
|
-
f = this.getSurchargerate();
|
|
6105
|
-
if (f !== 0.0) {
|
|
6106
|
-
writer.writeDouble(
|
|
6107
|
-
14,
|
|
6108
|
-
f
|
|
6109
|
-
);
|
|
6110
|
-
}
|
|
6111
6065
|
f = this.getTrimreferencenumber();
|
|
6112
6066
|
if (f) {
|
|
6113
6067
|
writer.writeBool(
|
|
@@ -6137,6 +6091,13 @@ proto.sniipbillerapi.BillerConfig.prototype.serializeBinaryToWriter = function (
|
|
|
6137
6091
|
f
|
|
6138
6092
|
);
|
|
6139
6093
|
}
|
|
6094
|
+
f = this.getPaymentprocessor();
|
|
6095
|
+
if (f.length > 0) {
|
|
6096
|
+
writer.writeString(
|
|
6097
|
+
19,
|
|
6098
|
+
f
|
|
6099
|
+
);
|
|
6100
|
+
}
|
|
6140
6101
|
};
|
|
6141
6102
|
|
|
6142
6103
|
|
|
@@ -6344,21 +6305,6 @@ proto.sniipbillerapi.BillerConfig.prototype.setPartialpaymentpermitted = functio
|
|
|
6344
6305
|
};
|
|
6345
6306
|
|
|
6346
6307
|
|
|
6347
|
-
/**
|
|
6348
|
-
* optional int64 paymentGatewayId = 12;
|
|
6349
|
-
* @return {number}
|
|
6350
|
-
*/
|
|
6351
|
-
proto.sniipbillerapi.BillerConfig.prototype.getPaymentgatewayid = function() {
|
|
6352
|
-
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 12, 0));
|
|
6353
|
-
};
|
|
6354
|
-
|
|
6355
|
-
|
|
6356
|
-
/** @param {number} value */
|
|
6357
|
-
proto.sniipbillerapi.BillerConfig.prototype.setPaymentgatewayid = function(value) {
|
|
6358
|
-
jspb.Message.setField(this, 12, value);
|
|
6359
|
-
};
|
|
6360
|
-
|
|
6361
|
-
|
|
6362
6308
|
/**
|
|
6363
6309
|
* optional QRCodeConfigRoot qrCodeConfig = 13;
|
|
6364
6310
|
* @return {proto.sniipbillerapi.QRCodeConfigRoot}
|
|
@@ -6389,21 +6335,6 @@ proto.sniipbillerapi.BillerConfig.prototype.hasQrcodeconfig = function() {
|
|
|
6389
6335
|
};
|
|
6390
6336
|
|
|
6391
6337
|
|
|
6392
|
-
/**
|
|
6393
|
-
* optional double surchargeRate = 14;
|
|
6394
|
-
* @return {number}
|
|
6395
|
-
*/
|
|
6396
|
-
proto.sniipbillerapi.BillerConfig.prototype.getSurchargerate = function() {
|
|
6397
|
-
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 14, 0));
|
|
6398
|
-
};
|
|
6399
|
-
|
|
6400
|
-
|
|
6401
|
-
/** @param {number} value */
|
|
6402
|
-
proto.sniipbillerapi.BillerConfig.prototype.setSurchargerate = function(value) {
|
|
6403
|
-
jspb.Message.setField(this, 14, value);
|
|
6404
|
-
};
|
|
6405
|
-
|
|
6406
|
-
|
|
6407
6338
|
/**
|
|
6408
6339
|
* optional bool trimReferenceNumber = 15;
|
|
6409
6340
|
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
@@ -6485,6 +6416,21 @@ proto.sniipbillerapi.BillerConfig.prototype.setOverpaymentpermitted = function(v
|
|
|
6485
6416
|
};
|
|
6486
6417
|
|
|
6487
6418
|
|
|
6419
|
+
/**
|
|
6420
|
+
* optional string paymentProcessor = 19;
|
|
6421
|
+
* @return {string}
|
|
6422
|
+
*/
|
|
6423
|
+
proto.sniipbillerapi.BillerConfig.prototype.getPaymentprocessor = function() {
|
|
6424
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 19, ""));
|
|
6425
|
+
};
|
|
6426
|
+
|
|
6427
|
+
|
|
6428
|
+
/** @param {string} value */
|
|
6429
|
+
proto.sniipbillerapi.BillerConfig.prototype.setPaymentprocessor = function(value) {
|
|
6430
|
+
jspb.Message.setField(this, 19, value);
|
|
6431
|
+
};
|
|
6432
|
+
|
|
6433
|
+
|
|
6488
6434
|
|
|
6489
6435
|
/**
|
|
6490
6436
|
* Generated by JsPbCodeGenerator.
|
|
@@ -6543,10 +6489,7 @@ proto.sniipbillerapi.BillerConfigDetails.toObject = function(includeInstance, ms
|
|
|
6543
6489
|
overpaymentpermitted: msg.getOverpaymentpermitted(),
|
|
6544
6490
|
parentbillerid: msg.getParentbillerid(),
|
|
6545
6491
|
partialpaymentpermitted: msg.getPartialpaymentpermitted(),
|
|
6546
|
-
|
|
6547
|
-
paymentgatewayname: msg.getPaymentgatewayname(),
|
|
6548
|
-
paymentgatewaytype: msg.getPaymentgatewaytype(),
|
|
6549
|
-
surchargerate: msg.getSurchargerate(),
|
|
6492
|
+
paymentprocessor: msg.getPaymentprocessor(),
|
|
6550
6493
|
trimreferencenumber: msg.getTrimreferencenumber()
|
|
6551
6494
|
};
|
|
6552
6495
|
|
|
@@ -6633,22 +6576,10 @@ proto.sniipbillerapi.BillerConfigDetails.deserializeBinaryFromReader = function(
|
|
|
6633
6576
|
msg.setPartialpaymentpermitted(value);
|
|
6634
6577
|
break;
|
|
6635
6578
|
case 13:
|
|
6636
|
-
var value = /** @type {number} */ (reader.readInt64());
|
|
6637
|
-
msg.setPaymentgatewayid(value);
|
|
6638
|
-
break;
|
|
6639
|
-
case 14:
|
|
6640
6579
|
var value = /** @type {string} */ (reader.readString());
|
|
6641
|
-
msg.
|
|
6580
|
+
msg.setPaymentprocessor(value);
|
|
6642
6581
|
break;
|
|
6643
|
-
case
|
|
6644
|
-
var value = /** @type {string} */ (reader.readString());
|
|
6645
|
-
msg.setPaymentgatewaytype(value);
|
|
6646
|
-
break;
|
|
6647
|
-
case 16:
|
|
6648
|
-
var value = /** @type {number} */ (reader.readDouble());
|
|
6649
|
-
msg.setSurchargerate(value);
|
|
6650
|
-
break;
|
|
6651
|
-
case 17:
|
|
6582
|
+
case 14:
|
|
6652
6583
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
6653
6584
|
msg.setTrimreferencenumber(value);
|
|
6654
6585
|
break;
|
|
@@ -6774,38 +6705,17 @@ proto.sniipbillerapi.BillerConfigDetails.prototype.serializeBinaryToWriter = fun
|
|
|
6774
6705
|
f
|
|
6775
6706
|
);
|
|
6776
6707
|
}
|
|
6777
|
-
f = this.
|
|
6778
|
-
if (f !== 0) {
|
|
6779
|
-
writer.writeInt64(
|
|
6780
|
-
13,
|
|
6781
|
-
f
|
|
6782
|
-
);
|
|
6783
|
-
}
|
|
6784
|
-
f = this.getPaymentgatewayname();
|
|
6785
|
-
if (f.length > 0) {
|
|
6786
|
-
writer.writeString(
|
|
6787
|
-
14,
|
|
6788
|
-
f
|
|
6789
|
-
);
|
|
6790
|
-
}
|
|
6791
|
-
f = this.getPaymentgatewaytype();
|
|
6708
|
+
f = this.getPaymentprocessor();
|
|
6792
6709
|
if (f.length > 0) {
|
|
6793
6710
|
writer.writeString(
|
|
6794
|
-
|
|
6795
|
-
f
|
|
6796
|
-
);
|
|
6797
|
-
}
|
|
6798
|
-
f = this.getSurchargerate();
|
|
6799
|
-
if (f !== 0.0) {
|
|
6800
|
-
writer.writeDouble(
|
|
6801
|
-
16,
|
|
6711
|
+
13,
|
|
6802
6712
|
f
|
|
6803
6713
|
);
|
|
6804
6714
|
}
|
|
6805
6715
|
f = this.getTrimreferencenumber();
|
|
6806
6716
|
if (f) {
|
|
6807
6717
|
writer.writeBool(
|
|
6808
|
-
|
|
6718
|
+
14,
|
|
6809
6719
|
f
|
|
6810
6720
|
);
|
|
6811
6721
|
}
|
|
@@ -7012,79 +6922,34 @@ proto.sniipbillerapi.BillerConfigDetails.prototype.setPartialpaymentpermitted =
|
|
|
7012
6922
|
|
|
7013
6923
|
|
|
7014
6924
|
/**
|
|
7015
|
-
* optional
|
|
7016
|
-
* @return {number}
|
|
7017
|
-
*/
|
|
7018
|
-
proto.sniipbillerapi.BillerConfigDetails.prototype.getPaymentgatewayid = function() {
|
|
7019
|
-
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 13, 0));
|
|
7020
|
-
};
|
|
7021
|
-
|
|
7022
|
-
|
|
7023
|
-
/** @param {number} value */
|
|
7024
|
-
proto.sniipbillerapi.BillerConfigDetails.prototype.setPaymentgatewayid = function(value) {
|
|
7025
|
-
jspb.Message.setField(this, 13, value);
|
|
7026
|
-
};
|
|
7027
|
-
|
|
7028
|
-
|
|
7029
|
-
/**
|
|
7030
|
-
* optional string paymentGatewayName = 14;
|
|
7031
|
-
* @return {string}
|
|
7032
|
-
*/
|
|
7033
|
-
proto.sniipbillerapi.BillerConfigDetails.prototype.getPaymentgatewayname = function() {
|
|
7034
|
-
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 14, ""));
|
|
7035
|
-
};
|
|
7036
|
-
|
|
7037
|
-
|
|
7038
|
-
/** @param {string} value */
|
|
7039
|
-
proto.sniipbillerapi.BillerConfigDetails.prototype.setPaymentgatewayname = function(value) {
|
|
7040
|
-
jspb.Message.setField(this, 14, value);
|
|
7041
|
-
};
|
|
7042
|
-
|
|
7043
|
-
|
|
7044
|
-
/**
|
|
7045
|
-
* optional string paymentGatewayType = 15;
|
|
6925
|
+
* optional string paymentProcessor = 13;
|
|
7046
6926
|
* @return {string}
|
|
7047
6927
|
*/
|
|
7048
|
-
proto.sniipbillerapi.BillerConfigDetails.prototype.
|
|
7049
|
-
return /** @type {string} */ (jspb.Message.getFieldProto3(this,
|
|
6928
|
+
proto.sniipbillerapi.BillerConfigDetails.prototype.getPaymentprocessor = function() {
|
|
6929
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 13, ""));
|
|
7050
6930
|
};
|
|
7051
6931
|
|
|
7052
6932
|
|
|
7053
6933
|
/** @param {string} value */
|
|
7054
|
-
proto.sniipbillerapi.BillerConfigDetails.prototype.
|
|
7055
|
-
jspb.Message.setField(this,
|
|
7056
|
-
};
|
|
7057
|
-
|
|
7058
|
-
|
|
7059
|
-
/**
|
|
7060
|
-
* optional double surchargeRate = 16;
|
|
7061
|
-
* @return {number}
|
|
7062
|
-
*/
|
|
7063
|
-
proto.sniipbillerapi.BillerConfigDetails.prototype.getSurchargerate = function() {
|
|
7064
|
-
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 16, 0));
|
|
7065
|
-
};
|
|
7066
|
-
|
|
7067
|
-
|
|
7068
|
-
/** @param {number} value */
|
|
7069
|
-
proto.sniipbillerapi.BillerConfigDetails.prototype.setSurchargerate = function(value) {
|
|
7070
|
-
jspb.Message.setField(this, 16, value);
|
|
6934
|
+
proto.sniipbillerapi.BillerConfigDetails.prototype.setPaymentprocessor = function(value) {
|
|
6935
|
+
jspb.Message.setField(this, 13, value);
|
|
7071
6936
|
};
|
|
7072
6937
|
|
|
7073
6938
|
|
|
7074
6939
|
/**
|
|
7075
|
-
* optional bool trimReferenceNumber =
|
|
6940
|
+
* optional bool trimReferenceNumber = 14;
|
|
7076
6941
|
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
7077
6942
|
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
7078
6943
|
* @return {boolean}
|
|
7079
6944
|
*/
|
|
7080
6945
|
proto.sniipbillerapi.BillerConfigDetails.prototype.getTrimreferencenumber = function() {
|
|
7081
|
-
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this,
|
|
6946
|
+
return /** @type {boolean} */ (jspb.Message.getFieldProto3(this, 14, false));
|
|
7082
6947
|
};
|
|
7083
6948
|
|
|
7084
6949
|
|
|
7085
6950
|
/** @param {boolean} value */
|
|
7086
6951
|
proto.sniipbillerapi.BillerConfigDetails.prototype.setTrimreferencenumber = function(value) {
|
|
7087
|
-
jspb.Message.setField(this,
|
|
6952
|
+
jspb.Message.setField(this, 14, value);
|
|
7088
6953
|
};
|
|
7089
6954
|
|
|
7090
6955
|
|
|
@@ -9083,7 +8948,7 @@ proto.sniipbillerapi.BillerWithConfig.toObject = function(includeInstance, msg)
|
|
|
9083
8948
|
billerid: msg.getBillerid(),
|
|
9084
8949
|
code: msg.getCode(),
|
|
9085
8950
|
crn: msg.getCrn(),
|
|
9086
|
-
|
|
8951
|
+
paymentprocessor: msg.getPaymentprocessor()
|
|
9087
8952
|
};
|
|
9088
8953
|
|
|
9089
8954
|
if (includeInstance) {
|
|
@@ -9133,8 +8998,8 @@ proto.sniipbillerapi.BillerWithConfig.deserializeBinaryFromReader = function(msg
|
|
|
9133
8998
|
msg.setCrn(value);
|
|
9134
8999
|
break;
|
|
9135
9000
|
case 4:
|
|
9136
|
-
var value = /** @type {
|
|
9137
|
-
msg.
|
|
9001
|
+
var value = /** @type {string} */ (reader.readString());
|
|
9002
|
+
msg.setPaymentprocessor(value);
|
|
9138
9003
|
break;
|
|
9139
9004
|
default:
|
|
9140
9005
|
reader.skipField();
|
|
@@ -9195,9 +9060,9 @@ proto.sniipbillerapi.BillerWithConfig.prototype.serializeBinaryToWriter = functi
|
|
|
9195
9060
|
f
|
|
9196
9061
|
);
|
|
9197
9062
|
}
|
|
9198
|
-
f = this.
|
|
9199
|
-
if (f
|
|
9200
|
-
writer.
|
|
9063
|
+
f = this.getPaymentprocessor();
|
|
9064
|
+
if (f.length > 0) {
|
|
9065
|
+
writer.writeString(
|
|
9201
9066
|
4,
|
|
9202
9067
|
f
|
|
9203
9068
|
);
|
|
@@ -9260,16 +9125,16 @@ proto.sniipbillerapi.BillerWithConfig.prototype.setCrn = function(value) {
|
|
|
9260
9125
|
|
|
9261
9126
|
|
|
9262
9127
|
/**
|
|
9263
|
-
* optional
|
|
9264
|
-
* @return {
|
|
9128
|
+
* optional string paymentProcessor = 4;
|
|
9129
|
+
* @return {string}
|
|
9265
9130
|
*/
|
|
9266
|
-
proto.sniipbillerapi.BillerWithConfig.prototype.
|
|
9267
|
-
return /** @type {
|
|
9131
|
+
proto.sniipbillerapi.BillerWithConfig.prototype.getPaymentprocessor = function() {
|
|
9132
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 4, ""));
|
|
9268
9133
|
};
|
|
9269
9134
|
|
|
9270
9135
|
|
|
9271
|
-
/** @param {
|
|
9272
|
-
proto.sniipbillerapi.BillerWithConfig.prototype.
|
|
9136
|
+
/** @param {string} value */
|
|
9137
|
+
proto.sniipbillerapi.BillerWithConfig.prototype.setPaymentprocessor = function(value) {
|
|
9273
9138
|
jspb.Message.setField(this, 4, value);
|
|
9274
9139
|
};
|
|
9275
9140
|
|