@sniipwebmaster/biller-service-client-grpcweb 24.7.7017 → 24.7.7028

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.
@@ -139,6 +139,67 @@ proto.sniipbillerapi.SniipBillerAPIServicePromiseClient.prototype.abnLookup =
139
139
  };
140
140
 
141
141
 
142
+ /**
143
+ * @const
144
+ * @type {!grpc.web.MethodDescriptor<
145
+ * !proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest,
146
+ * !proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse>}
147
+ */
148
+ const methodDescriptor_SniipBillerAPIService_AbnLookupWithBpayOverrideCheck = new grpc.web.MethodDescriptor(
149
+ '/sniipbillerapi.SniipBillerAPIService/AbnLookupWithBpayOverrideCheck',
150
+ grpc.web.MethodType.UNARY,
151
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest,
152
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse,
153
+ /**
154
+ * @param {!proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest} request
155
+ * @return {!Uint8Array}
156
+ */
157
+ function(request) {
158
+ return request.serializeBinary();
159
+ },
160
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.deserializeBinary
161
+ );
162
+
163
+
164
+ /**
165
+ * @param {!proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest} request The
166
+ * request proto
167
+ * @param {?Object<string, string>} metadata User defined
168
+ * call metadata
169
+ * @param {function(?grpc.web.RpcError, ?proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse)}
170
+ * callback The callback function(error, response)
171
+ * @return {!grpc.web.ClientReadableStream<!proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse>|undefined}
172
+ * The XHR Node Readable Stream
173
+ */
174
+ proto.sniipbillerapi.SniipBillerAPIServiceClient.prototype.abnLookupWithBpayOverrideCheck =
175
+ function(request, metadata, callback) {
176
+ return this.client_.rpcCall(this.hostname_ +
177
+ '/sniipbillerapi.SniipBillerAPIService/AbnLookupWithBpayOverrideCheck',
178
+ request,
179
+ metadata || {},
180
+ methodDescriptor_SniipBillerAPIService_AbnLookupWithBpayOverrideCheck,
181
+ callback);
182
+ };
183
+
184
+
185
+ /**
186
+ * @param {!proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest} request The
187
+ * request proto
188
+ * @param {?Object<string, string>=} metadata User defined
189
+ * call metadata
190
+ * @return {!Promise<!proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse>}
191
+ * Promise that resolves to the response
192
+ */
193
+ proto.sniipbillerapi.SniipBillerAPIServicePromiseClient.prototype.abnLookupWithBpayOverrideCheck =
194
+ function(request, metadata) {
195
+ return this.client_.unaryCall(this.hostname_ +
196
+ '/sniipbillerapi.SniipBillerAPIService/AbnLookupWithBpayOverrideCheck',
197
+ request,
198
+ metadata || {},
199
+ methodDescriptor_SniipBillerAPIService_AbnLookupWithBpayOverrideCheck);
200
+ };
201
+
202
+
142
203
  /**
143
204
  * @const
144
205
  * @type {!grpc.web.MethodDescriptor<
@@ -18,6 +18,8 @@ var google_protobuf_empty_pb = require('google-protobuf/google/protobuf/empty_pb
18
18
  goog.object.extend(proto, google_protobuf_empty_pb);
19
19
  goog.exportSymbol('proto.sniipbillerapi.AbnLookupRequest', null, global);
20
20
  goog.exportSymbol('proto.sniipbillerapi.AbnLookupResponse', null, global);
21
+ goog.exportSymbol('proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest', null, global);
22
+ goog.exportSymbol('proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse', null, global);
21
23
  goog.exportSymbol('proto.sniipbillerapi.AbnSearchRequest', null, global);
22
24
  goog.exportSymbol('proto.sniipbillerapi.AbnSearchResponse', null, global);
23
25
  goog.exportSymbol('proto.sniipbillerapi.AbnSearchResult', null, global);
@@ -73,6 +75,7 @@ goog.exportSymbol('proto.sniipbillerapi.BillersRequest', null, global);
73
75
  goog.exportSymbol('proto.sniipbillerapi.BillersResponse', null, global);
74
76
  goog.exportSymbol('proto.sniipbillerapi.BillersWithConfigsRequest', null, global);
75
77
  goog.exportSymbol('proto.sniipbillerapi.BillersWithSmeConfigsInReviewResponse', null, global);
78
+ goog.exportSymbol('proto.sniipbillerapi.BpayOverridingDetails', null, global);
76
79
  goog.exportSymbol('proto.sniipbillerapi.BusinessBillerReference', null, global);
77
80
  goog.exportSymbol('proto.sniipbillerapi.BusinessBillerReference.BusinessBillerReferenceMarkPaymentAs', null, global);
78
81
  goog.exportSymbol('proto.sniipbillerapi.BusinessBillerReferencesByUser', null, global);
@@ -237,6 +240,48 @@ if (goog.DEBUG && !COMPILED) {
237
240
  */
238
241
  proto.sniipbillerapi.AbnLookupResponse.displayName = 'proto.sniipbillerapi.AbnLookupResponse';
239
242
  }
243
+ /**
244
+ * Generated by JsPbCodeGenerator.
245
+ * @param {Array=} opt_data Optional initial data array, typically from a
246
+ * server response, or constructed directly in Javascript. The array is used
247
+ * in place and becomes part of the constructed object. It is not cloned.
248
+ * If no data is provided, the constructed object will be empty, but still
249
+ * valid.
250
+ * @extends {jspb.Message}
251
+ * @constructor
252
+ */
253
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest = function(opt_data) {
254
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
255
+ };
256
+ goog.inherits(proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest, jspb.Message);
257
+ if (goog.DEBUG && !COMPILED) {
258
+ /**
259
+ * @public
260
+ * @override
261
+ */
262
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest.displayName = 'proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest';
263
+ }
264
+ /**
265
+ * Generated by JsPbCodeGenerator.
266
+ * @param {Array=} opt_data Optional initial data array, typically from a
267
+ * server response, or constructed directly in Javascript. The array is used
268
+ * in place and becomes part of the constructed object. It is not cloned.
269
+ * If no data is provided, the constructed object will be empty, but still
270
+ * valid.
271
+ * @extends {jspb.Message}
272
+ * @constructor
273
+ */
274
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse = function(opt_data) {
275
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
276
+ };
277
+ goog.inherits(proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse, jspb.Message);
278
+ if (goog.DEBUG && !COMPILED) {
279
+ /**
280
+ * @public
281
+ * @override
282
+ */
283
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.displayName = 'proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse';
284
+ }
240
285
  /**
241
286
  * Generated by JsPbCodeGenerator.
242
287
  * @param {Array=} opt_data Optional initial data array, typically from a
@@ -1392,6 +1437,27 @@ if (goog.DEBUG && !COMPILED) {
1392
1437
  */
1393
1438
  proto.sniipbillerapi.BillersWithSmeConfigsInReviewResponse.displayName = 'proto.sniipbillerapi.BillersWithSmeConfigsInReviewResponse';
1394
1439
  }
1440
+ /**
1441
+ * Generated by JsPbCodeGenerator.
1442
+ * @param {Array=} opt_data Optional initial data array, typically from a
1443
+ * server response, or constructed directly in Javascript. The array is used
1444
+ * in place and becomes part of the constructed object. It is not cloned.
1445
+ * If no data is provided, the constructed object will be empty, but still
1446
+ * valid.
1447
+ * @extends {jspb.Message}
1448
+ * @constructor
1449
+ */
1450
+ proto.sniipbillerapi.BpayOverridingDetails = function(opt_data) {
1451
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
1452
+ };
1453
+ goog.inherits(proto.sniipbillerapi.BpayOverridingDetails, jspb.Message);
1454
+ if (goog.DEBUG && !COMPILED) {
1455
+ /**
1456
+ * @public
1457
+ * @override
1458
+ */
1459
+ proto.sniipbillerapi.BpayOverridingDetails.displayName = 'proto.sniipbillerapi.BpayOverridingDetails';
1460
+ }
1395
1461
  /**
1396
1462
  * Generated by JsPbCodeGenerator.
1397
1463
  * @param {Array=} opt_data Optional initial data array, typically from a
@@ -4205,6 +4271,389 @@ proto.sniipbillerapi.AbnLookupResponse.prototype.hasResponsecode = function() {
4205
4271
 
4206
4272
 
4207
4273
 
4274
+ if (jspb.Message.GENERATE_TO_OBJECT) {
4275
+ /**
4276
+ * Creates an object representation of this proto.
4277
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
4278
+ * Optional fields that are not set will be set to undefined.
4279
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
4280
+ * For the list of reserved names please see:
4281
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
4282
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
4283
+ * JSPB instance for transitional soy proto support:
4284
+ * http://goto/soy-param-migration
4285
+ * @return {!Object}
4286
+ */
4287
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest.prototype.toObject = function(opt_includeInstance) {
4288
+ return proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest.toObject(opt_includeInstance, this);
4289
+ };
4290
+
4291
+
4292
+ /**
4293
+ * Static version of the {@see toObject} method.
4294
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
4295
+ * the JSPB instance for transitional soy proto support:
4296
+ * http://goto/soy-param-migration
4297
+ * @param {!proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest} msg The msg instance to transform.
4298
+ * @return {!Object}
4299
+ * @suppress {unusedLocalVariables} f is only used for nested messages
4300
+ */
4301
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest.toObject = function(includeInstance, msg) {
4302
+ var f, obj = {
4303
+ abn: jspb.Message.getFieldWithDefault(msg, 1, "")
4304
+ };
4305
+
4306
+ if (includeInstance) {
4307
+ obj.$jspbMessageInstance = msg;
4308
+ }
4309
+ return obj;
4310
+ };
4311
+ }
4312
+
4313
+
4314
+ /**
4315
+ * Deserializes binary data (in protobuf wire format).
4316
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
4317
+ * @return {!proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest}
4318
+ */
4319
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest.deserializeBinary = function(bytes) {
4320
+ var reader = new jspb.BinaryReader(bytes);
4321
+ var msg = new proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest;
4322
+ return proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest.deserializeBinaryFromReader(msg, reader);
4323
+ };
4324
+
4325
+
4326
+ /**
4327
+ * Deserializes binary data (in protobuf wire format) from the
4328
+ * given reader into the given message object.
4329
+ * @param {!proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest} msg The message object to deserialize into.
4330
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
4331
+ * @return {!proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest}
4332
+ */
4333
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest.deserializeBinaryFromReader = function(msg, reader) {
4334
+ while (reader.nextField()) {
4335
+ if (reader.isEndGroup()) {
4336
+ break;
4337
+ }
4338
+ var field = reader.getFieldNumber();
4339
+ switch (field) {
4340
+ case 1:
4341
+ var value = /** @type {string} */ (reader.readString());
4342
+ msg.setAbn(value);
4343
+ break;
4344
+ default:
4345
+ reader.skipField();
4346
+ break;
4347
+ }
4348
+ }
4349
+ return msg;
4350
+ };
4351
+
4352
+
4353
+ /**
4354
+ * Serializes the message to binary data (in protobuf wire format).
4355
+ * @return {!Uint8Array}
4356
+ */
4357
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest.prototype.serializeBinary = function() {
4358
+ var writer = new jspb.BinaryWriter();
4359
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest.serializeBinaryToWriter(this, writer);
4360
+ return writer.getResultBuffer();
4361
+ };
4362
+
4363
+
4364
+ /**
4365
+ * Serializes the given message to binary data (in protobuf wire
4366
+ * format), writing to the given BinaryWriter.
4367
+ * @param {!proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest} message
4368
+ * @param {!jspb.BinaryWriter} writer
4369
+ * @suppress {unusedLocalVariables} f is only used for nested messages
4370
+ */
4371
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest.serializeBinaryToWriter = function(message, writer) {
4372
+ var f = undefined;
4373
+ f = message.getAbn();
4374
+ if (f.length > 0) {
4375
+ writer.writeString(
4376
+ 1,
4377
+ f
4378
+ );
4379
+ }
4380
+ };
4381
+
4382
+
4383
+ /**
4384
+ * optional string abn = 1;
4385
+ * @return {string}
4386
+ */
4387
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest.prototype.getAbn = function() {
4388
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
4389
+ };
4390
+
4391
+
4392
+ /**
4393
+ * @param {string} value
4394
+ * @return {!proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest} returns this
4395
+ */
4396
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckRequest.prototype.setAbn = function(value) {
4397
+ return jspb.Message.setProto3StringField(this, 1, value);
4398
+ };
4399
+
4400
+
4401
+
4402
+
4403
+
4404
+ if (jspb.Message.GENERATE_TO_OBJECT) {
4405
+ /**
4406
+ * Creates an object representation of this proto.
4407
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
4408
+ * Optional fields that are not set will be set to undefined.
4409
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
4410
+ * For the list of reserved names please see:
4411
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
4412
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
4413
+ * JSPB instance for transitional soy proto support:
4414
+ * http://goto/soy-param-migration
4415
+ * @return {!Object}
4416
+ */
4417
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.prototype.toObject = function(opt_includeInstance) {
4418
+ return proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.toObject(opt_includeInstance, this);
4419
+ };
4420
+
4421
+
4422
+ /**
4423
+ * Static version of the {@see toObject} method.
4424
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
4425
+ * the JSPB instance for transitional soy proto support:
4426
+ * http://goto/soy-param-migration
4427
+ * @param {!proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse} msg The msg instance to transform.
4428
+ * @return {!Object}
4429
+ * @suppress {unusedLocalVariables} f is only used for nested messages
4430
+ */
4431
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.toObject = function(includeInstance, msg) {
4432
+ var f, obj = {
4433
+ responsecode: (f = msg.getResponsecode()) && proto.sniipbillerapi.ResponseCode.toObject(includeInstance, f),
4434
+ abndetails: (f = msg.getAbndetails()) && proto.sniipbillerapi.OrganisationDetails.toObject(includeInstance, f),
4435
+ overridingdetails: (f = msg.getOverridingdetails()) && proto.sniipbillerapi.BpayOverridingDetails.toObject(includeInstance, f)
4436
+ };
4437
+
4438
+ if (includeInstance) {
4439
+ obj.$jspbMessageInstance = msg;
4440
+ }
4441
+ return obj;
4442
+ };
4443
+ }
4444
+
4445
+
4446
+ /**
4447
+ * Deserializes binary data (in protobuf wire format).
4448
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
4449
+ * @return {!proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse}
4450
+ */
4451
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.deserializeBinary = function(bytes) {
4452
+ var reader = new jspb.BinaryReader(bytes);
4453
+ var msg = new proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse;
4454
+ return proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.deserializeBinaryFromReader(msg, reader);
4455
+ };
4456
+
4457
+
4458
+ /**
4459
+ * Deserializes binary data (in protobuf wire format) from the
4460
+ * given reader into the given message object.
4461
+ * @param {!proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse} msg The message object to deserialize into.
4462
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
4463
+ * @return {!proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse}
4464
+ */
4465
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.deserializeBinaryFromReader = function(msg, reader) {
4466
+ while (reader.nextField()) {
4467
+ if (reader.isEndGroup()) {
4468
+ break;
4469
+ }
4470
+ var field = reader.getFieldNumber();
4471
+ switch (field) {
4472
+ case 1:
4473
+ var value = new proto.sniipbillerapi.ResponseCode;
4474
+ reader.readMessage(value,proto.sniipbillerapi.ResponseCode.deserializeBinaryFromReader);
4475
+ msg.setResponsecode(value);
4476
+ break;
4477
+ case 2:
4478
+ var value = new proto.sniipbillerapi.OrganisationDetails;
4479
+ reader.readMessage(value,proto.sniipbillerapi.OrganisationDetails.deserializeBinaryFromReader);
4480
+ msg.setAbndetails(value);
4481
+ break;
4482
+ case 3:
4483
+ var value = new proto.sniipbillerapi.BpayOverridingDetails;
4484
+ reader.readMessage(value,proto.sniipbillerapi.BpayOverridingDetails.deserializeBinaryFromReader);
4485
+ msg.setOverridingdetails(value);
4486
+ break;
4487
+ default:
4488
+ reader.skipField();
4489
+ break;
4490
+ }
4491
+ }
4492
+ return msg;
4493
+ };
4494
+
4495
+
4496
+ /**
4497
+ * Serializes the message to binary data (in protobuf wire format).
4498
+ * @return {!Uint8Array}
4499
+ */
4500
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.prototype.serializeBinary = function() {
4501
+ var writer = new jspb.BinaryWriter();
4502
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.serializeBinaryToWriter(this, writer);
4503
+ return writer.getResultBuffer();
4504
+ };
4505
+
4506
+
4507
+ /**
4508
+ * Serializes the given message to binary data (in protobuf wire
4509
+ * format), writing to the given BinaryWriter.
4510
+ * @param {!proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse} message
4511
+ * @param {!jspb.BinaryWriter} writer
4512
+ * @suppress {unusedLocalVariables} f is only used for nested messages
4513
+ */
4514
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.serializeBinaryToWriter = function(message, writer) {
4515
+ var f = undefined;
4516
+ f = message.getResponsecode();
4517
+ if (f != null) {
4518
+ writer.writeMessage(
4519
+ 1,
4520
+ f,
4521
+ proto.sniipbillerapi.ResponseCode.serializeBinaryToWriter
4522
+ );
4523
+ }
4524
+ f = message.getAbndetails();
4525
+ if (f != null) {
4526
+ writer.writeMessage(
4527
+ 2,
4528
+ f,
4529
+ proto.sniipbillerapi.OrganisationDetails.serializeBinaryToWriter
4530
+ );
4531
+ }
4532
+ f = message.getOverridingdetails();
4533
+ if (f != null) {
4534
+ writer.writeMessage(
4535
+ 3,
4536
+ f,
4537
+ proto.sniipbillerapi.BpayOverridingDetails.serializeBinaryToWriter
4538
+ );
4539
+ }
4540
+ };
4541
+
4542
+
4543
+ /**
4544
+ * optional ResponseCode responseCode = 1;
4545
+ * @return {?proto.sniipbillerapi.ResponseCode}
4546
+ */
4547
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.prototype.getResponsecode = function() {
4548
+ return /** @type{?proto.sniipbillerapi.ResponseCode} */ (
4549
+ jspb.Message.getWrapperField(this, proto.sniipbillerapi.ResponseCode, 1));
4550
+ };
4551
+
4552
+
4553
+ /**
4554
+ * @param {?proto.sniipbillerapi.ResponseCode|undefined} value
4555
+ * @return {!proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse} returns this
4556
+ */
4557
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.prototype.setResponsecode = function(value) {
4558
+ return jspb.Message.setWrapperField(this, 1, value);
4559
+ };
4560
+
4561
+
4562
+ /**
4563
+ * Clears the message field making it undefined.
4564
+ * @return {!proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse} returns this
4565
+ */
4566
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.prototype.clearResponsecode = function() {
4567
+ return this.setResponsecode(undefined);
4568
+ };
4569
+
4570
+
4571
+ /**
4572
+ * Returns whether this field is set.
4573
+ * @return {boolean}
4574
+ */
4575
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.prototype.hasResponsecode = function() {
4576
+ return jspb.Message.getField(this, 1) != null;
4577
+ };
4578
+
4579
+
4580
+ /**
4581
+ * optional OrganisationDetails abnDetails = 2;
4582
+ * @return {?proto.sniipbillerapi.OrganisationDetails}
4583
+ */
4584
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.prototype.getAbndetails = function() {
4585
+ return /** @type{?proto.sniipbillerapi.OrganisationDetails} */ (
4586
+ jspb.Message.getWrapperField(this, proto.sniipbillerapi.OrganisationDetails, 2));
4587
+ };
4588
+
4589
+
4590
+ /**
4591
+ * @param {?proto.sniipbillerapi.OrganisationDetails|undefined} value
4592
+ * @return {!proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse} returns this
4593
+ */
4594
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.prototype.setAbndetails = function(value) {
4595
+ return jspb.Message.setWrapperField(this, 2, value);
4596
+ };
4597
+
4598
+
4599
+ /**
4600
+ * Clears the message field making it undefined.
4601
+ * @return {!proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse} returns this
4602
+ */
4603
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.prototype.clearAbndetails = function() {
4604
+ return this.setAbndetails(undefined);
4605
+ };
4606
+
4607
+
4608
+ /**
4609
+ * Returns whether this field is set.
4610
+ * @return {boolean}
4611
+ */
4612
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.prototype.hasAbndetails = function() {
4613
+ return jspb.Message.getField(this, 2) != null;
4614
+ };
4615
+
4616
+
4617
+ /**
4618
+ * optional BpayOverridingDetails overridingDetails = 3;
4619
+ * @return {?proto.sniipbillerapi.BpayOverridingDetails}
4620
+ */
4621
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.prototype.getOverridingdetails = function() {
4622
+ return /** @type{?proto.sniipbillerapi.BpayOverridingDetails} */ (
4623
+ jspb.Message.getWrapperField(this, proto.sniipbillerapi.BpayOverridingDetails, 3));
4624
+ };
4625
+
4626
+
4627
+ /**
4628
+ * @param {?proto.sniipbillerapi.BpayOverridingDetails|undefined} value
4629
+ * @return {!proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse} returns this
4630
+ */
4631
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.prototype.setOverridingdetails = function(value) {
4632
+ return jspb.Message.setWrapperField(this, 3, value);
4633
+ };
4634
+
4635
+
4636
+ /**
4637
+ * Clears the message field making it undefined.
4638
+ * @return {!proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse} returns this
4639
+ */
4640
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.prototype.clearOverridingdetails = function() {
4641
+ return this.setOverridingdetails(undefined);
4642
+ };
4643
+
4644
+
4645
+ /**
4646
+ * Returns whether this field is set.
4647
+ * @return {boolean}
4648
+ */
4649
+ proto.sniipbillerapi.AbnLookupWithBpayOverrideCheckResponse.prototype.hasOverridingdetails = function() {
4650
+ return jspb.Message.getField(this, 3) != null;
4651
+ };
4652
+
4653
+
4654
+
4655
+
4656
+
4208
4657
  if (jspb.Message.GENERATE_TO_OBJECT) {
4209
4658
  /**
4210
4659
  * Creates an object representation of this proto.
@@ -20583,6 +21032,166 @@ proto.sniipbillerapi.BillersWithSmeConfigsInReviewResponse.prototype.setTotalpag
20583
21032
 
20584
21033
 
20585
21034
 
21035
+ if (jspb.Message.GENERATE_TO_OBJECT) {
21036
+ /**
21037
+ * Creates an object representation of this proto.
21038
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
21039
+ * Optional fields that are not set will be set to undefined.
21040
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
21041
+ * For the list of reserved names please see:
21042
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
21043
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
21044
+ * JSPB instance for transitional soy proto support:
21045
+ * http://goto/soy-param-migration
21046
+ * @return {!Object}
21047
+ */
21048
+ proto.sniipbillerapi.BpayOverridingDetails.prototype.toObject = function(opt_includeInstance) {
21049
+ return proto.sniipbillerapi.BpayOverridingDetails.toObject(opt_includeInstance, this);
21050
+ };
21051
+
21052
+
21053
+ /**
21054
+ * Static version of the {@see toObject} method.
21055
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
21056
+ * the JSPB instance for transitional soy proto support:
21057
+ * http://goto/soy-param-migration
21058
+ * @param {!proto.sniipbillerapi.BpayOverridingDetails} msg The msg instance to transform.
21059
+ * @return {!Object}
21060
+ * @suppress {unusedLocalVariables} f is only used for nested messages
21061
+ */
21062
+ proto.sniipbillerapi.BpayOverridingDetails.toObject = function(includeInstance, msg) {
21063
+ var f, obj = {
21064
+ billername: jspb.Message.getFieldWithDefault(msg, 1, ""),
21065
+ billercode: jspb.Message.getFieldWithDefault(msg, 2, "")
21066
+ };
21067
+
21068
+ if (includeInstance) {
21069
+ obj.$jspbMessageInstance = msg;
21070
+ }
21071
+ return obj;
21072
+ };
21073
+ }
21074
+
21075
+
21076
+ /**
21077
+ * Deserializes binary data (in protobuf wire format).
21078
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
21079
+ * @return {!proto.sniipbillerapi.BpayOverridingDetails}
21080
+ */
21081
+ proto.sniipbillerapi.BpayOverridingDetails.deserializeBinary = function(bytes) {
21082
+ var reader = new jspb.BinaryReader(bytes);
21083
+ var msg = new proto.sniipbillerapi.BpayOverridingDetails;
21084
+ return proto.sniipbillerapi.BpayOverridingDetails.deserializeBinaryFromReader(msg, reader);
21085
+ };
21086
+
21087
+
21088
+ /**
21089
+ * Deserializes binary data (in protobuf wire format) from the
21090
+ * given reader into the given message object.
21091
+ * @param {!proto.sniipbillerapi.BpayOverridingDetails} msg The message object to deserialize into.
21092
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
21093
+ * @return {!proto.sniipbillerapi.BpayOverridingDetails}
21094
+ */
21095
+ proto.sniipbillerapi.BpayOverridingDetails.deserializeBinaryFromReader = function(msg, reader) {
21096
+ while (reader.nextField()) {
21097
+ if (reader.isEndGroup()) {
21098
+ break;
21099
+ }
21100
+ var field = reader.getFieldNumber();
21101
+ switch (field) {
21102
+ case 1:
21103
+ var value = /** @type {string} */ (reader.readString());
21104
+ msg.setBillername(value);
21105
+ break;
21106
+ case 2:
21107
+ var value = /** @type {string} */ (reader.readString());
21108
+ msg.setBillercode(value);
21109
+ break;
21110
+ default:
21111
+ reader.skipField();
21112
+ break;
21113
+ }
21114
+ }
21115
+ return msg;
21116
+ };
21117
+
21118
+
21119
+ /**
21120
+ * Serializes the message to binary data (in protobuf wire format).
21121
+ * @return {!Uint8Array}
21122
+ */
21123
+ proto.sniipbillerapi.BpayOverridingDetails.prototype.serializeBinary = function() {
21124
+ var writer = new jspb.BinaryWriter();
21125
+ proto.sniipbillerapi.BpayOverridingDetails.serializeBinaryToWriter(this, writer);
21126
+ return writer.getResultBuffer();
21127
+ };
21128
+
21129
+
21130
+ /**
21131
+ * Serializes the given message to binary data (in protobuf wire
21132
+ * format), writing to the given BinaryWriter.
21133
+ * @param {!proto.sniipbillerapi.BpayOverridingDetails} message
21134
+ * @param {!jspb.BinaryWriter} writer
21135
+ * @suppress {unusedLocalVariables} f is only used for nested messages
21136
+ */
21137
+ proto.sniipbillerapi.BpayOverridingDetails.serializeBinaryToWriter = function(message, writer) {
21138
+ var f = undefined;
21139
+ f = message.getBillername();
21140
+ if (f.length > 0) {
21141
+ writer.writeString(
21142
+ 1,
21143
+ f
21144
+ );
21145
+ }
21146
+ f = message.getBillercode();
21147
+ if (f.length > 0) {
21148
+ writer.writeString(
21149
+ 2,
21150
+ f
21151
+ );
21152
+ }
21153
+ };
21154
+
21155
+
21156
+ /**
21157
+ * optional string billerName = 1;
21158
+ * @return {string}
21159
+ */
21160
+ proto.sniipbillerapi.BpayOverridingDetails.prototype.getBillername = function() {
21161
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
21162
+ };
21163
+
21164
+
21165
+ /**
21166
+ * @param {string} value
21167
+ * @return {!proto.sniipbillerapi.BpayOverridingDetails} returns this
21168
+ */
21169
+ proto.sniipbillerapi.BpayOverridingDetails.prototype.setBillername = function(value) {
21170
+ return jspb.Message.setProto3StringField(this, 1, value);
21171
+ };
21172
+
21173
+
21174
+ /**
21175
+ * optional string billerCode = 2;
21176
+ * @return {string}
21177
+ */
21178
+ proto.sniipbillerapi.BpayOverridingDetails.prototype.getBillercode = function() {
21179
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
21180
+ };
21181
+
21182
+
21183
+ /**
21184
+ * @param {string} value
21185
+ * @return {!proto.sniipbillerapi.BpayOverridingDetails} returns this
21186
+ */
21187
+ proto.sniipbillerapi.BpayOverridingDetails.prototype.setBillercode = function(value) {
21188
+ return jspb.Message.setProto3StringField(this, 2, value);
21189
+ };
21190
+
21191
+
21192
+
21193
+
21194
+
20586
21195
  if (jspb.Message.GENERATE_TO_OBJECT) {
20587
21196
  /**
20588
21197
  * Creates an object representation of this proto.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sniipwebmaster/biller-service-client-grpcweb",
3
- "version": "24.7.7017",
3
+ "version": "24.7.7028",
4
4
  "description": "biller-service-client-grpcweb",
5
5
  "author": "Sniip Development Team",
6
6
  "license": "MIT",