@sniipwebmaster/biller-service-client-grpcweb 0.2.2502 → 0.2.2529
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 +55 -1
- package/package.json +1 -1
|
@@ -4283,7 +4283,9 @@ proto.sniipbillerapi.Biller.toObject = function(includeInstance, msg) {
|
|
|
4283
4283
|
proto.sniipbillerapi.ReportRecipient.toObject, includeInstance),
|
|
4284
4284
|
timezone: msg.getTimezone(),
|
|
4285
4285
|
timezoneabbr: msg.getTimezoneabbr(),
|
|
4286
|
-
verified: msg.getVerified()
|
|
4286
|
+
verified: msg.getVerified(),
|
|
4287
|
+
donationmessage: msg.getDonationmessage(),
|
|
4288
|
+
donationmessage2: msg.getDonationmessage2()
|
|
4287
4289
|
};
|
|
4288
4290
|
|
|
4289
4291
|
if (includeInstance) {
|
|
@@ -4369,6 +4371,14 @@ proto.sniipbillerapi.Biller.deserializeBinaryFromReader = function(msg, reader)
|
|
|
4369
4371
|
var value = /** @type {string} */ (reader.readString());
|
|
4370
4372
|
msg.setVerified(value);
|
|
4371
4373
|
break;
|
|
4374
|
+
case 12:
|
|
4375
|
+
var value = /** @type {string} */ (reader.readString());
|
|
4376
|
+
msg.setDonationmessage(value);
|
|
4377
|
+
break;
|
|
4378
|
+
case 13:
|
|
4379
|
+
var value = /** @type {string} */ (reader.readString());
|
|
4380
|
+
msg.setDonationmessage2(value);
|
|
4381
|
+
break;
|
|
4372
4382
|
default:
|
|
4373
4383
|
reader.skipField();
|
|
4374
4384
|
break;
|
|
@@ -4487,6 +4497,20 @@ proto.sniipbillerapi.Biller.prototype.serializeBinaryToWriter = function (writer
|
|
|
4487
4497
|
f
|
|
4488
4498
|
);
|
|
4489
4499
|
}
|
|
4500
|
+
f = this.getDonationmessage();
|
|
4501
|
+
if (f.length > 0) {
|
|
4502
|
+
writer.writeString(
|
|
4503
|
+
12,
|
|
4504
|
+
f
|
|
4505
|
+
);
|
|
4506
|
+
}
|
|
4507
|
+
f = this.getDonationmessage2();
|
|
4508
|
+
if (f.length > 0) {
|
|
4509
|
+
writer.writeString(
|
|
4510
|
+
13,
|
|
4511
|
+
f
|
|
4512
|
+
);
|
|
4513
|
+
}
|
|
4490
4514
|
};
|
|
4491
4515
|
|
|
4492
4516
|
|
|
@@ -4697,6 +4721,36 @@ proto.sniipbillerapi.Biller.prototype.setVerified = function(value) {
|
|
|
4697
4721
|
};
|
|
4698
4722
|
|
|
4699
4723
|
|
|
4724
|
+
/**
|
|
4725
|
+
* optional string donationMessage = 12;
|
|
4726
|
+
* @return {string}
|
|
4727
|
+
*/
|
|
4728
|
+
proto.sniipbillerapi.Biller.prototype.getDonationmessage = function() {
|
|
4729
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 12, ""));
|
|
4730
|
+
};
|
|
4731
|
+
|
|
4732
|
+
|
|
4733
|
+
/** @param {string} value */
|
|
4734
|
+
proto.sniipbillerapi.Biller.prototype.setDonationmessage = function(value) {
|
|
4735
|
+
jspb.Message.setField(this, 12, value);
|
|
4736
|
+
};
|
|
4737
|
+
|
|
4738
|
+
|
|
4739
|
+
/**
|
|
4740
|
+
* optional string donationMessage2 = 13;
|
|
4741
|
+
* @return {string}
|
|
4742
|
+
*/
|
|
4743
|
+
proto.sniipbillerapi.Biller.prototype.getDonationmessage2 = function() {
|
|
4744
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 13, ""));
|
|
4745
|
+
};
|
|
4746
|
+
|
|
4747
|
+
|
|
4748
|
+
/** @param {string} value */
|
|
4749
|
+
proto.sniipbillerapi.Biller.prototype.setDonationmessage2 = function(value) {
|
|
4750
|
+
jspb.Message.setField(this, 13, value);
|
|
4751
|
+
};
|
|
4752
|
+
|
|
4753
|
+
|
|
4700
4754
|
|
|
4701
4755
|
/**
|
|
4702
4756
|
* Generated by JsPbCodeGenerator.
|