@sniipwebmaster/biller-service-client-grpcweb 25.5.8558 → 25.5.8574
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 +31 -1
- package/package.json +1 -1
|
@@ -5163,7 +5163,8 @@ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.toObject = function(
|
|
|
5163
5163
|
abndetails: (f = msg.getAbndetails()) && proto.sniipbillerapi.OrganisationDetails.toObject(includeInstance, f),
|
|
5164
5164
|
overridingdetails: (f = msg.getOverridingdetails()) && proto.sniipbillerapi.BpayOverridingDetails.toObject(includeInstance, f),
|
|
5165
5165
|
minamountpermitted: jspb.Message.getFloatingPointFieldWithDefault(msg, 4, 0.0),
|
|
5166
|
-
maxamountpermitted: jspb.Message.getFloatingPointFieldWithDefault(msg, 5, 0.0)
|
|
5166
|
+
maxamountpermitted: jspb.Message.getFloatingPointFieldWithDefault(msg, 5, 0.0),
|
|
5167
|
+
isonlybpaybiller: jspb.Message.getBooleanFieldWithDefault(msg, 6, false)
|
|
5167
5168
|
};
|
|
5168
5169
|
|
|
5169
5170
|
if (includeInstance) {
|
|
@@ -5223,6 +5224,10 @@ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.deserializeBinaryFro
|
|
|
5223
5224
|
var value = /** @type {number} */ (reader.readDouble());
|
|
5224
5225
|
msg.setMaxamountpermitted(value);
|
|
5225
5226
|
break;
|
|
5227
|
+
case 6:
|
|
5228
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
5229
|
+
msg.setIsonlybpaybiller(value);
|
|
5230
|
+
break;
|
|
5226
5231
|
default:
|
|
5227
5232
|
reader.skipField();
|
|
5228
5233
|
break;
|
|
@@ -5290,6 +5295,13 @@ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.serializeBinaryToWri
|
|
|
5290
5295
|
f
|
|
5291
5296
|
);
|
|
5292
5297
|
}
|
|
5298
|
+
f = message.getIsonlybpaybiller();
|
|
5299
|
+
if (f) {
|
|
5300
|
+
writer.writeBool(
|
|
5301
|
+
6,
|
|
5302
|
+
f
|
|
5303
|
+
);
|
|
5304
|
+
}
|
|
5293
5305
|
};
|
|
5294
5306
|
|
|
5295
5307
|
|
|
@@ -5440,6 +5452,24 @@ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.prototype.setMaxamou
|
|
|
5440
5452
|
};
|
|
5441
5453
|
|
|
5442
5454
|
|
|
5455
|
+
/**
|
|
5456
|
+
* optional bool isOnlyBpayBiller = 6;
|
|
5457
|
+
* @return {boolean}
|
|
5458
|
+
*/
|
|
5459
|
+
proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.prototype.getIsonlybpaybiller = function() {
|
|
5460
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 6, false));
|
|
5461
|
+
};
|
|
5462
|
+
|
|
5463
|
+
|
|
5464
|
+
/**
|
|
5465
|
+
* @param {boolean} value
|
|
5466
|
+
* @return {!proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse} returns this
|
|
5467
|
+
*/
|
|
5468
|
+
proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.prototype.setIsonlybpaybiller = function(value) {
|
|
5469
|
+
return jspb.Message.setProto3BooleanField(this, 6, value);
|
|
5470
|
+
};
|
|
5471
|
+
|
|
5472
|
+
|
|
5443
5473
|
|
|
5444
5474
|
|
|
5445
5475
|
|