@sniipwebmaster/biller-service-client-grpcweb 0.2.2629 → 0.2.2642
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
|
@@ -4286,7 +4286,8 @@ proto.sniipbillerapi.Biller.toObject = function(includeInstance, msg) {
|
|
|
4286
4286
|
verified: msg.getVerified(),
|
|
4287
4287
|
donationmessage: msg.getDonationmessage(),
|
|
4288
4288
|
donationmessage2: msg.getDonationmessage2(),
|
|
4289
|
-
donationmessage3: msg.getDonationmessage3()
|
|
4289
|
+
donationmessage3: msg.getDonationmessage3(),
|
|
4290
|
+
graceperiod: msg.getGraceperiod()
|
|
4290
4291
|
};
|
|
4291
4292
|
|
|
4292
4293
|
if (includeInstance) {
|
|
@@ -4384,6 +4385,10 @@ proto.sniipbillerapi.Biller.deserializeBinaryFromReader = function(msg, reader)
|
|
|
4384
4385
|
var value = /** @type {string} */ (reader.readString());
|
|
4385
4386
|
msg.setDonationmessage3(value);
|
|
4386
4387
|
break;
|
|
4388
|
+
case 15:
|
|
4389
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
4390
|
+
msg.setGraceperiod(value);
|
|
4391
|
+
break;
|
|
4387
4392
|
default:
|
|
4388
4393
|
reader.skipField();
|
|
4389
4394
|
break;
|
|
@@ -4523,6 +4528,13 @@ proto.sniipbillerapi.Biller.prototype.serializeBinaryToWriter = function (writer
|
|
|
4523
4528
|
f
|
|
4524
4529
|
);
|
|
4525
4530
|
}
|
|
4531
|
+
f = this.getGraceperiod();
|
|
4532
|
+
if (f !== 0) {
|
|
4533
|
+
writer.writeInt64(
|
|
4534
|
+
15,
|
|
4535
|
+
f
|
|
4536
|
+
);
|
|
4537
|
+
}
|
|
4526
4538
|
};
|
|
4527
4539
|
|
|
4528
4540
|
|
|
@@ -4778,6 +4790,21 @@ proto.sniipbillerapi.Biller.prototype.setDonationmessage3 = function(value) {
|
|
|
4778
4790
|
};
|
|
4779
4791
|
|
|
4780
4792
|
|
|
4793
|
+
/**
|
|
4794
|
+
* optional int64 gracePeriod = 15;
|
|
4795
|
+
* @return {number}
|
|
4796
|
+
*/
|
|
4797
|
+
proto.sniipbillerapi.Biller.prototype.getGraceperiod = function() {
|
|
4798
|
+
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 15, 0));
|
|
4799
|
+
};
|
|
4800
|
+
|
|
4801
|
+
|
|
4802
|
+
/** @param {number} value */
|
|
4803
|
+
proto.sniipbillerapi.Biller.prototype.setGraceperiod = function(value) {
|
|
4804
|
+
jspb.Message.setField(this, 15, value);
|
|
4805
|
+
};
|
|
4806
|
+
|
|
4807
|
+
|
|
4781
4808
|
|
|
4782
4809
|
/**
|
|
4783
4810
|
* Generated by JsPbCodeGenerator.
|