@sniipwebmaster/biller-service-client-grpcweb 24.13.7650 → 24.13.7675
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 +49 -1
- package/package.json +1 -1
|
@@ -19723,7 +19723,8 @@ proto.sniipbillerapi.BillerSmeConfigForPortal.toObject = function(includeInstanc
|
|
|
19723
19723
|
createddatetime: jspb.Message.getFieldWithDefault(msg, 18, ""),
|
|
19724
19724
|
createdbybillbankaccountname: jspb.Message.getFieldWithDefault(msg, 19, ""),
|
|
19725
19725
|
createdbybillsource: jspb.Message.getFieldWithDefault(msg, 20, ""),
|
|
19726
|
-
createdbyagentbill: jspb.Message.getBooleanFieldWithDefault(msg, 21, false)
|
|
19726
|
+
createdbyagentbill: jspb.Message.getBooleanFieldWithDefault(msg, 21, false),
|
|
19727
|
+
bankaccountstatus: jspb.Message.getFieldWithDefault(msg, 22, "")
|
|
19727
19728
|
};
|
|
19728
19729
|
|
|
19729
19730
|
if (includeInstance) {
|
|
@@ -19845,6 +19846,10 @@ proto.sniipbillerapi.BillerSmeConfigForPortal.deserializeBinaryFromReader = func
|
|
|
19845
19846
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
19846
19847
|
msg.setCreatedbyagentbill(value);
|
|
19847
19848
|
break;
|
|
19849
|
+
case 22:
|
|
19850
|
+
var value = /** @type {string} */ (reader.readString());
|
|
19851
|
+
msg.setBankaccountstatus(value);
|
|
19852
|
+
break;
|
|
19848
19853
|
default:
|
|
19849
19854
|
reader.skipField();
|
|
19850
19855
|
break;
|
|
@@ -20022,6 +20027,13 @@ proto.sniipbillerapi.BillerSmeConfigForPortal.serializeBinaryToWriter = function
|
|
|
20022
20027
|
f
|
|
20023
20028
|
);
|
|
20024
20029
|
}
|
|
20030
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 22));
|
|
20031
|
+
if (f != null) {
|
|
20032
|
+
writer.writeString(
|
|
20033
|
+
22,
|
|
20034
|
+
f
|
|
20035
|
+
);
|
|
20036
|
+
}
|
|
20025
20037
|
};
|
|
20026
20038
|
|
|
20027
20039
|
|
|
@@ -20422,6 +20434,42 @@ proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.setCreatedbyagentbill =
|
|
|
20422
20434
|
};
|
|
20423
20435
|
|
|
20424
20436
|
|
|
20437
|
+
/**
|
|
20438
|
+
* optional string bankAccountStatus = 22;
|
|
20439
|
+
* @return {string}
|
|
20440
|
+
*/
|
|
20441
|
+
proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.getBankaccountstatus = function() {
|
|
20442
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 22, ""));
|
|
20443
|
+
};
|
|
20444
|
+
|
|
20445
|
+
|
|
20446
|
+
/**
|
|
20447
|
+
* @param {string} value
|
|
20448
|
+
* @return {!proto.sniipbillerapi.BillerSmeConfigForPortal} returns this
|
|
20449
|
+
*/
|
|
20450
|
+
proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.setBankaccountstatus = function(value) {
|
|
20451
|
+
return jspb.Message.setField(this, 22, value);
|
|
20452
|
+
};
|
|
20453
|
+
|
|
20454
|
+
|
|
20455
|
+
/**
|
|
20456
|
+
* Clears the field making it undefined.
|
|
20457
|
+
* @return {!proto.sniipbillerapi.BillerSmeConfigForPortal} returns this
|
|
20458
|
+
*/
|
|
20459
|
+
proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.clearBankaccountstatus = function() {
|
|
20460
|
+
return jspb.Message.setField(this, 22, undefined);
|
|
20461
|
+
};
|
|
20462
|
+
|
|
20463
|
+
|
|
20464
|
+
/**
|
|
20465
|
+
* Returns whether this field is set.
|
|
20466
|
+
* @return {boolean}
|
|
20467
|
+
*/
|
|
20468
|
+
proto.sniipbillerapi.BillerSmeConfigForPortal.prototype.hasBankaccountstatus = function() {
|
|
20469
|
+
return jspb.Message.getField(this, 22) != null;
|
|
20470
|
+
};
|
|
20471
|
+
|
|
20472
|
+
|
|
20425
20473
|
|
|
20426
20474
|
|
|
20427
20475
|
|