@sniipwebmaster/biller-service-client-grpcweb 26.2.9412 → 26.2.9428
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 +61 -1
- package/package.json +1 -1
|
@@ -14209,7 +14209,9 @@ proto.sniipbillerapi.BillerConfigDetails.toObject = function(includeInstance, ms
|
|
|
14209
14209
|
requiresreview: jspb.Message.getBooleanFieldWithDefault(msg, 15, false),
|
|
14210
14210
|
trimreferencenumber: jspb.Message.getBooleanFieldWithDefault(msg, 16, false),
|
|
14211
14211
|
billerconfigid: jspb.Message.getFieldWithDefault(msg, 17, 0),
|
|
14212
|
-
qrcodeidentifier: jspb.Message.getFieldWithDefault(msg, 18, "")
|
|
14212
|
+
qrcodeidentifier: jspb.Message.getFieldWithDefault(msg, 18, ""),
|
|
14213
|
+
bsb: jspb.Message.getFieldWithDefault(msg, 19, ""),
|
|
14214
|
+
accountno: jspb.Message.getFieldWithDefault(msg, 20, "")
|
|
14213
14215
|
};
|
|
14214
14216
|
|
|
14215
14217
|
if (includeInstance) {
|
|
@@ -14318,6 +14320,14 @@ proto.sniipbillerapi.BillerConfigDetails.deserializeBinaryFromReader = function(
|
|
|
14318
14320
|
var value = /** @type {string} */ (reader.readString());
|
|
14319
14321
|
msg.setQrcodeidentifier(value);
|
|
14320
14322
|
break;
|
|
14323
|
+
case 19:
|
|
14324
|
+
var value = /** @type {string} */ (reader.readString());
|
|
14325
|
+
msg.setBsb(value);
|
|
14326
|
+
break;
|
|
14327
|
+
case 20:
|
|
14328
|
+
var value = /** @type {string} */ (reader.readString());
|
|
14329
|
+
msg.setAccountno(value);
|
|
14330
|
+
break;
|
|
14321
14331
|
default:
|
|
14322
14332
|
reader.skipField();
|
|
14323
14333
|
break;
|
|
@@ -14473,6 +14483,20 @@ proto.sniipbillerapi.BillerConfigDetails.serializeBinaryToWriter = function(mess
|
|
|
14473
14483
|
f
|
|
14474
14484
|
);
|
|
14475
14485
|
}
|
|
14486
|
+
f = message.getBsb();
|
|
14487
|
+
if (f.length > 0) {
|
|
14488
|
+
writer.writeString(
|
|
14489
|
+
19,
|
|
14490
|
+
f
|
|
14491
|
+
);
|
|
14492
|
+
}
|
|
14493
|
+
f = message.getAccountno();
|
|
14494
|
+
if (f.length > 0) {
|
|
14495
|
+
writer.writeString(
|
|
14496
|
+
20,
|
|
14497
|
+
f
|
|
14498
|
+
);
|
|
14499
|
+
}
|
|
14476
14500
|
};
|
|
14477
14501
|
|
|
14478
14502
|
|
|
@@ -14800,6 +14824,42 @@ proto.sniipbillerapi.BillerConfigDetails.prototype.setQrcodeidentifier = functio
|
|
|
14800
14824
|
};
|
|
14801
14825
|
|
|
14802
14826
|
|
|
14827
|
+
/**
|
|
14828
|
+
* optional string bsb = 19;
|
|
14829
|
+
* @return {string}
|
|
14830
|
+
*/
|
|
14831
|
+
proto.sniipbillerapi.BillerConfigDetails.prototype.getBsb = function() {
|
|
14832
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 19, ""));
|
|
14833
|
+
};
|
|
14834
|
+
|
|
14835
|
+
|
|
14836
|
+
/**
|
|
14837
|
+
* @param {string} value
|
|
14838
|
+
* @return {!proto.sniipbillerapi.BillerConfigDetails} returns this
|
|
14839
|
+
*/
|
|
14840
|
+
proto.sniipbillerapi.BillerConfigDetails.prototype.setBsb = function(value) {
|
|
14841
|
+
return jspb.Message.setProto3StringField(this, 19, value);
|
|
14842
|
+
};
|
|
14843
|
+
|
|
14844
|
+
|
|
14845
|
+
/**
|
|
14846
|
+
* optional string accountNo = 20;
|
|
14847
|
+
* @return {string}
|
|
14848
|
+
*/
|
|
14849
|
+
proto.sniipbillerapi.BillerConfigDetails.prototype.getAccountno = function() {
|
|
14850
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 20, ""));
|
|
14851
|
+
};
|
|
14852
|
+
|
|
14853
|
+
|
|
14854
|
+
/**
|
|
14855
|
+
* @param {string} value
|
|
14856
|
+
* @return {!proto.sniipbillerapi.BillerConfigDetails} returns this
|
|
14857
|
+
*/
|
|
14858
|
+
proto.sniipbillerapi.BillerConfigDetails.prototype.setAccountno = function(value) {
|
|
14859
|
+
return jspb.Message.setProto3StringField(this, 20, value);
|
|
14860
|
+
};
|
|
14861
|
+
|
|
14862
|
+
|
|
14803
14863
|
|
|
14804
14864
|
|
|
14805
14865
|
|