@sniipwebmaster/biller-service-client-grpcweb 0.2.2353 → 0.2.2363
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
|
@@ -17258,7 +17258,9 @@ proto.sniipbillerapi.Organisation.toObject = function(includeInstance, msg) {
|
|
|
17258
17258
|
organisationid: msg.getOrganisationid(),
|
|
17259
17259
|
name: msg.getName(),
|
|
17260
17260
|
logo: msg.getLogo(),
|
|
17261
|
-
description: msg.getDescription()
|
|
17261
|
+
description: msg.getDescription(),
|
|
17262
|
+
maxamountpermitted: msg.getMaxamountpermitted(),
|
|
17263
|
+
minamountpermitted: msg.getMinamountpermitted()
|
|
17262
17264
|
};
|
|
17263
17265
|
|
|
17264
17266
|
if (includeInstance) {
|
|
@@ -17311,6 +17313,14 @@ proto.sniipbillerapi.Organisation.deserializeBinaryFromReader = function(msg, re
|
|
|
17311
17313
|
var value = /** @type {string} */ (reader.readString());
|
|
17312
17314
|
msg.setDescription(value);
|
|
17313
17315
|
break;
|
|
17316
|
+
case 5:
|
|
17317
|
+
var value = /** @type {number} */ (reader.readDouble());
|
|
17318
|
+
msg.setMaxamountpermitted(value);
|
|
17319
|
+
break;
|
|
17320
|
+
case 6:
|
|
17321
|
+
var value = /** @type {number} */ (reader.readDouble());
|
|
17322
|
+
msg.setMinamountpermitted(value);
|
|
17323
|
+
break;
|
|
17314
17324
|
default:
|
|
17315
17325
|
reader.skipField();
|
|
17316
17326
|
break;
|
|
@@ -17377,6 +17387,20 @@ proto.sniipbillerapi.Organisation.prototype.serializeBinaryToWriter = function (
|
|
|
17377
17387
|
f
|
|
17378
17388
|
);
|
|
17379
17389
|
}
|
|
17390
|
+
f = this.getMaxamountpermitted();
|
|
17391
|
+
if (f !== 0.0) {
|
|
17392
|
+
writer.writeDouble(
|
|
17393
|
+
5,
|
|
17394
|
+
f
|
|
17395
|
+
);
|
|
17396
|
+
}
|
|
17397
|
+
f = this.getMinamountpermitted();
|
|
17398
|
+
if (f !== 0.0) {
|
|
17399
|
+
writer.writeDouble(
|
|
17400
|
+
6,
|
|
17401
|
+
f
|
|
17402
|
+
);
|
|
17403
|
+
}
|
|
17380
17404
|
};
|
|
17381
17405
|
|
|
17382
17406
|
|
|
@@ -17449,6 +17473,36 @@ proto.sniipbillerapi.Organisation.prototype.setDescription = function(value) {
|
|
|
17449
17473
|
};
|
|
17450
17474
|
|
|
17451
17475
|
|
|
17476
|
+
/**
|
|
17477
|
+
* optional double maxAmountPermitted = 5;
|
|
17478
|
+
* @return {number}
|
|
17479
|
+
*/
|
|
17480
|
+
proto.sniipbillerapi.Organisation.prototype.getMaxamountpermitted = function() {
|
|
17481
|
+
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 5, 0));
|
|
17482
|
+
};
|
|
17483
|
+
|
|
17484
|
+
|
|
17485
|
+
/** @param {number} value */
|
|
17486
|
+
proto.sniipbillerapi.Organisation.prototype.setMaxamountpermitted = function(value) {
|
|
17487
|
+
jspb.Message.setField(this, 5, value);
|
|
17488
|
+
};
|
|
17489
|
+
|
|
17490
|
+
|
|
17491
|
+
/**
|
|
17492
|
+
* optional double minAmountPermitted = 6;
|
|
17493
|
+
* @return {number}
|
|
17494
|
+
*/
|
|
17495
|
+
proto.sniipbillerapi.Organisation.prototype.getMinamountpermitted = function() {
|
|
17496
|
+
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 6, 0));
|
|
17497
|
+
};
|
|
17498
|
+
|
|
17499
|
+
|
|
17500
|
+
/** @param {number} value */
|
|
17501
|
+
proto.sniipbillerapi.Organisation.prototype.setMinamountpermitted = function(value) {
|
|
17502
|
+
jspb.Message.setField(this, 6, value);
|
|
17503
|
+
};
|
|
17504
|
+
|
|
17505
|
+
|
|
17452
17506
|
|
|
17453
17507
|
/**
|
|
17454
17508
|
* Generated by JsPbCodeGenerator.
|