@sniipwebmaster/biller-service-client-grpcweb 0.2.2599 → 0.2.2619
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
|
@@ -4285,7 +4285,8 @@ proto.sniipbillerapi.Biller.toObject = function(includeInstance, msg) {
|
|
|
4285
4285
|
timezoneabbr: msg.getTimezoneabbr(),
|
|
4286
4286
|
verified: msg.getVerified(),
|
|
4287
4287
|
donationmessage: msg.getDonationmessage(),
|
|
4288
|
-
donationmessage2: msg.getDonationmessage2()
|
|
4288
|
+
donationmessage2: msg.getDonationmessage2(),
|
|
4289
|
+
donationmessage3: msg.getDonationmessage3()
|
|
4289
4290
|
};
|
|
4290
4291
|
|
|
4291
4292
|
if (includeInstance) {
|
|
@@ -4379,6 +4380,10 @@ proto.sniipbillerapi.Biller.deserializeBinaryFromReader = function(msg, reader)
|
|
|
4379
4380
|
var value = /** @type {string} */ (reader.readString());
|
|
4380
4381
|
msg.setDonationmessage2(value);
|
|
4381
4382
|
break;
|
|
4383
|
+
case 14:
|
|
4384
|
+
var value = /** @type {string} */ (reader.readString());
|
|
4385
|
+
msg.setDonationmessage3(value);
|
|
4386
|
+
break;
|
|
4382
4387
|
default:
|
|
4383
4388
|
reader.skipField();
|
|
4384
4389
|
break;
|
|
@@ -4511,6 +4516,13 @@ proto.sniipbillerapi.Biller.prototype.serializeBinaryToWriter = function (writer
|
|
|
4511
4516
|
f
|
|
4512
4517
|
);
|
|
4513
4518
|
}
|
|
4519
|
+
f = this.getDonationmessage3();
|
|
4520
|
+
if (f.length > 0) {
|
|
4521
|
+
writer.writeString(
|
|
4522
|
+
14,
|
|
4523
|
+
f
|
|
4524
|
+
);
|
|
4525
|
+
}
|
|
4514
4526
|
};
|
|
4515
4527
|
|
|
4516
4528
|
|
|
@@ -4751,6 +4763,21 @@ proto.sniipbillerapi.Biller.prototype.setDonationmessage2 = function(value) {
|
|
|
4751
4763
|
};
|
|
4752
4764
|
|
|
4753
4765
|
|
|
4766
|
+
/**
|
|
4767
|
+
* optional string donationMessage3 = 14;
|
|
4768
|
+
* @return {string}
|
|
4769
|
+
*/
|
|
4770
|
+
proto.sniipbillerapi.Biller.prototype.getDonationmessage3 = function() {
|
|
4771
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 14, ""));
|
|
4772
|
+
};
|
|
4773
|
+
|
|
4774
|
+
|
|
4775
|
+
/** @param {string} value */
|
|
4776
|
+
proto.sniipbillerapi.Biller.prototype.setDonationmessage3 = function(value) {
|
|
4777
|
+
jspb.Message.setField(this, 14, value);
|
|
4778
|
+
};
|
|
4779
|
+
|
|
4780
|
+
|
|
4754
4781
|
|
|
4755
4782
|
/**
|
|
4756
4783
|
* Generated by JsPbCodeGenerator.
|