@sniipwebmaster/biller-service-client-grpcweb 0.2.2738 → 0.2.2748
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
|
@@ -4288,7 +4288,8 @@ proto.sniipbillerapi.Biller.toObject = function(includeInstance, msg) {
|
|
|
4288
4288
|
donationmessage: msg.getDonationmessage(),
|
|
4289
4289
|
donationmessage2: msg.getDonationmessage2(),
|
|
4290
4290
|
donationmessage3: msg.getDonationmessage3(),
|
|
4291
|
-
graceperiod: msg.getGraceperiod()
|
|
4291
|
+
graceperiod: msg.getGraceperiod(),
|
|
4292
|
+
description: msg.getDescription()
|
|
4292
4293
|
};
|
|
4293
4294
|
|
|
4294
4295
|
if (includeInstance) {
|
|
@@ -4390,6 +4391,10 @@ proto.sniipbillerapi.Biller.deserializeBinaryFromReader = function(msg, reader)
|
|
|
4390
4391
|
var value = /** @type {number} */ (reader.readInt64());
|
|
4391
4392
|
msg.setGraceperiod(value);
|
|
4392
4393
|
break;
|
|
4394
|
+
case 16:
|
|
4395
|
+
var value = /** @type {string} */ (reader.readString());
|
|
4396
|
+
msg.setDescription(value);
|
|
4397
|
+
break;
|
|
4393
4398
|
default:
|
|
4394
4399
|
reader.skipField();
|
|
4395
4400
|
break;
|
|
@@ -4536,6 +4541,13 @@ proto.sniipbillerapi.Biller.prototype.serializeBinaryToWriter = function (writer
|
|
|
4536
4541
|
f
|
|
4537
4542
|
);
|
|
4538
4543
|
}
|
|
4544
|
+
f = this.getDescription();
|
|
4545
|
+
if (f.length > 0) {
|
|
4546
|
+
writer.writeString(
|
|
4547
|
+
16,
|
|
4548
|
+
f
|
|
4549
|
+
);
|
|
4550
|
+
}
|
|
4539
4551
|
};
|
|
4540
4552
|
|
|
4541
4553
|
|
|
@@ -4806,6 +4818,21 @@ proto.sniipbillerapi.Biller.prototype.setGraceperiod = function(value) {
|
|
|
4806
4818
|
};
|
|
4807
4819
|
|
|
4808
4820
|
|
|
4821
|
+
/**
|
|
4822
|
+
* optional string description = 16;
|
|
4823
|
+
* @return {string}
|
|
4824
|
+
*/
|
|
4825
|
+
proto.sniipbillerapi.Biller.prototype.getDescription = function() {
|
|
4826
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 16, ""));
|
|
4827
|
+
};
|
|
4828
|
+
|
|
4829
|
+
|
|
4830
|
+
/** @param {string} value */
|
|
4831
|
+
proto.sniipbillerapi.Biller.prototype.setDescription = function(value) {
|
|
4832
|
+
jspb.Message.setField(this, 16, value);
|
|
4833
|
+
};
|
|
4834
|
+
|
|
4835
|
+
|
|
4809
4836
|
|
|
4810
4837
|
/**
|
|
4811
4838
|
* Generated by JsPbCodeGenerator.
|