@sniipwebmaster/biller-service-client-grpcweb 23.3.5603 → 23.3.5626
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.
|
@@ -4554,6 +4554,86 @@ proto.sniipbillerapi.SniipBillerAPIServicePromiseClient.prototype.notifyCustomer
|
|
|
4554
4554
|
};
|
|
4555
4555
|
|
|
4556
4556
|
|
|
4557
|
+
/**
|
|
4558
|
+
* @const
|
|
4559
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
4560
|
+
* !proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest,
|
|
4561
|
+
* !proto.sniipbillerapi.ResponseCode>}
|
|
4562
|
+
*/
|
|
4563
|
+
const methodDescriptor_SniipBillerAPIService_NotifyCustomersWithBillerConfigId = new grpc.web.MethodDescriptor(
|
|
4564
|
+
'/sniipbillerapi.SniipBillerAPIService/NotifyCustomersWithBillerConfigId',
|
|
4565
|
+
grpc.web.MethodType.UNARY,
|
|
4566
|
+
proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest,
|
|
4567
|
+
proto.sniipbillerapi.ResponseCode,
|
|
4568
|
+
/**
|
|
4569
|
+
* @param {!proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest} request
|
|
4570
|
+
* @return {!Uint8Array}
|
|
4571
|
+
*/
|
|
4572
|
+
function(request) {
|
|
4573
|
+
return request.serializeBinary();
|
|
4574
|
+
},
|
|
4575
|
+
proto.sniipbillerapi.ResponseCode.deserializeBinary
|
|
4576
|
+
);
|
|
4577
|
+
|
|
4578
|
+
|
|
4579
|
+
/**
|
|
4580
|
+
* @const
|
|
4581
|
+
* @type {!grpc.web.AbstractClientBase.MethodInfo<
|
|
4582
|
+
* !proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest,
|
|
4583
|
+
* !proto.sniipbillerapi.ResponseCode>}
|
|
4584
|
+
*/
|
|
4585
|
+
const methodInfo_SniipBillerAPIService_NotifyCustomersWithBillerConfigId = new grpc.web.AbstractClientBase.MethodInfo(
|
|
4586
|
+
proto.sniipbillerapi.ResponseCode,
|
|
4587
|
+
/**
|
|
4588
|
+
* @param {!proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest} request
|
|
4589
|
+
* @return {!Uint8Array}
|
|
4590
|
+
*/
|
|
4591
|
+
function(request) {
|
|
4592
|
+
return request.serializeBinary();
|
|
4593
|
+
},
|
|
4594
|
+
proto.sniipbillerapi.ResponseCode.deserializeBinary
|
|
4595
|
+
);
|
|
4596
|
+
|
|
4597
|
+
|
|
4598
|
+
/**
|
|
4599
|
+
* @param {!proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest} request The
|
|
4600
|
+
* request proto
|
|
4601
|
+
* @param {?Object<string, string>} metadata User defined
|
|
4602
|
+
* call metadata
|
|
4603
|
+
* @param {function(?grpc.web.Error, ?proto.sniipbillerapi.ResponseCode)}
|
|
4604
|
+
* callback The callback function(error, response)
|
|
4605
|
+
* @return {!grpc.web.ClientReadableStream<!proto.sniipbillerapi.ResponseCode>|undefined}
|
|
4606
|
+
* The XHR Node Readable Stream
|
|
4607
|
+
*/
|
|
4608
|
+
proto.sniipbillerapi.SniipBillerAPIServiceClient.prototype.notifyCustomersWithBillerConfigId =
|
|
4609
|
+
function(request, metadata, callback) {
|
|
4610
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
4611
|
+
'/sniipbillerapi.SniipBillerAPIService/NotifyCustomersWithBillerConfigId',
|
|
4612
|
+
request,
|
|
4613
|
+
metadata || {},
|
|
4614
|
+
methodDescriptor_SniipBillerAPIService_NotifyCustomersWithBillerConfigId,
|
|
4615
|
+
callback);
|
|
4616
|
+
};
|
|
4617
|
+
|
|
4618
|
+
|
|
4619
|
+
/**
|
|
4620
|
+
* @param {!proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest} request The
|
|
4621
|
+
* request proto
|
|
4622
|
+
* @param {?Object<string, string>} metadata User defined
|
|
4623
|
+
* call metadata
|
|
4624
|
+
* @return {!Promise<!proto.sniipbillerapi.ResponseCode>}
|
|
4625
|
+
* Promise that resolves to the response
|
|
4626
|
+
*/
|
|
4627
|
+
proto.sniipbillerapi.SniipBillerAPIServicePromiseClient.prototype.notifyCustomersWithBillerConfigId =
|
|
4628
|
+
function(request, metadata) {
|
|
4629
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
4630
|
+
'/sniipbillerapi.SniipBillerAPIService/NotifyCustomersWithBillerConfigId',
|
|
4631
|
+
request,
|
|
4632
|
+
metadata || {},
|
|
4633
|
+
methodDescriptor_SniipBillerAPIService_NotifyCustomersWithBillerConfigId);
|
|
4634
|
+
};
|
|
4635
|
+
|
|
4636
|
+
|
|
4557
4637
|
/**
|
|
4558
4638
|
* @const
|
|
4559
4639
|
* @type {!grpc.web.MethodDescriptor<
|
|
@@ -78,6 +78,7 @@ goog.exportSymbol('proto.sniipbillerapi.CreateBillerResponse', null, global);
|
|
|
78
78
|
goog.exportSymbol('proto.sniipbillerapi.CreateBillerResponse.RolesMessage', null, global);
|
|
79
79
|
goog.exportSymbol('proto.sniipbillerapi.CreateRevisionRequest', null, global);
|
|
80
80
|
goog.exportSymbol('proto.sniipbillerapi.CustomersNotifyRequest', null, global);
|
|
81
|
+
goog.exportSymbol('proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest', null, global);
|
|
81
82
|
goog.exportSymbol('proto.sniipbillerapi.DeleteBillerLogoRequest', null, global);
|
|
82
83
|
goog.exportSymbol('proto.sniipbillerapi.DeleteBillerNotificationRecipientRequest', null, global);
|
|
83
84
|
goog.exportSymbol('proto.sniipbillerapi.DeleteBillerRequest', null, global);
|
|
@@ -129,6 +130,7 @@ goog.exportSymbol('proto.sniipbillerapi.MarkBillerCodeAndReferenceAsBusinessRequ
|
|
|
129
130
|
goog.exportSymbol('proto.sniipbillerapi.MaskedCreditCard', null, global);
|
|
130
131
|
goog.exportSymbol('proto.sniipbillerapi.MultipleBillersRequest', null, global);
|
|
131
132
|
goog.exportSymbol('proto.sniipbillerapi.NotifyCustomersRequest', null, global);
|
|
133
|
+
goog.exportSymbol('proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest', null, global);
|
|
132
134
|
goog.exportSymbol('proto.sniipbillerapi.Organisation', null, global);
|
|
133
135
|
goog.exportSymbol('proto.sniipbillerapi.OrganisationDetails', null, global);
|
|
134
136
|
goog.exportSymbol('proto.sniipbillerapi.OrganisationsResponse', null, global);
|
|
@@ -20159,6 +20161,246 @@ proto.sniipbillerapi.CustomersNotifyRequest.prototype.setPassword = function(val
|
|
|
20159
20161
|
|
|
20160
20162
|
|
|
20161
20163
|
|
|
20164
|
+
/**
|
|
20165
|
+
* Generated by JsPbCodeGenerator.
|
|
20166
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
20167
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
20168
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
20169
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
20170
|
+
* valid.
|
|
20171
|
+
* @extends {jspb.Message}
|
|
20172
|
+
* @constructor
|
|
20173
|
+
*/
|
|
20174
|
+
proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest = function(opt_data) {
|
|
20175
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
20176
|
+
};
|
|
20177
|
+
goog.inherits(proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest, jspb.Message);
|
|
20178
|
+
if (goog.DEBUG && !COMPILED) {
|
|
20179
|
+
proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest.displayName = 'proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest';
|
|
20180
|
+
}
|
|
20181
|
+
|
|
20182
|
+
|
|
20183
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
20184
|
+
/**
|
|
20185
|
+
* Creates an object representation of this proto suitable for use in Soy templates.
|
|
20186
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
20187
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
20188
|
+
* For the list of reserved names please see:
|
|
20189
|
+
* com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
|
|
20190
|
+
* @param {boolean=} opt_includeInstance Whether to include the JSPB instance
|
|
20191
|
+
* for transitional soy proto support: http://goto/soy-param-migration
|
|
20192
|
+
* @return {!Object}
|
|
20193
|
+
*/
|
|
20194
|
+
proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest.prototype.toObject = function(opt_includeInstance) {
|
|
20195
|
+
return proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest.toObject(opt_includeInstance, this);
|
|
20196
|
+
};
|
|
20197
|
+
|
|
20198
|
+
|
|
20199
|
+
/**
|
|
20200
|
+
* Static version of the {@see toObject} method.
|
|
20201
|
+
* @param {boolean|undefined} includeInstance Whether to include the JSPB
|
|
20202
|
+
* instance for transitional soy proto support:
|
|
20203
|
+
* http://goto/soy-param-migration
|
|
20204
|
+
* @param {!proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest} msg The msg instance to transform.
|
|
20205
|
+
* @return {!Object}
|
|
20206
|
+
*/
|
|
20207
|
+
proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest.toObject = function(includeInstance, msg) {
|
|
20208
|
+
var f, obj = {
|
|
20209
|
+
billerconfigid: msg.getBillerconfigid(),
|
|
20210
|
+
subject: msg.getSubject(),
|
|
20211
|
+
message: msg.getMessage(),
|
|
20212
|
+
password: msg.getPassword()
|
|
20213
|
+
};
|
|
20214
|
+
|
|
20215
|
+
if (includeInstance) {
|
|
20216
|
+
obj.$jspbMessageInstance = msg;
|
|
20217
|
+
}
|
|
20218
|
+
return obj;
|
|
20219
|
+
};
|
|
20220
|
+
}
|
|
20221
|
+
|
|
20222
|
+
|
|
20223
|
+
/**
|
|
20224
|
+
* Deserializes binary data (in protobuf wire format).
|
|
20225
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
20226
|
+
* @return {!proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest}
|
|
20227
|
+
*/
|
|
20228
|
+
proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest.deserializeBinary = function(bytes) {
|
|
20229
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
20230
|
+
var msg = new proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest;
|
|
20231
|
+
return proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest.deserializeBinaryFromReader(msg, reader);
|
|
20232
|
+
};
|
|
20233
|
+
|
|
20234
|
+
|
|
20235
|
+
/**
|
|
20236
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
20237
|
+
* given reader into the given message object.
|
|
20238
|
+
* @param {!proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest} msg The message object to deserialize into.
|
|
20239
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
20240
|
+
* @return {!proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest}
|
|
20241
|
+
*/
|
|
20242
|
+
proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
20243
|
+
while (reader.nextField()) {
|
|
20244
|
+
if (reader.isEndGroup()) {
|
|
20245
|
+
break;
|
|
20246
|
+
}
|
|
20247
|
+
var field = reader.getFieldNumber();
|
|
20248
|
+
switch (field) {
|
|
20249
|
+
case 1:
|
|
20250
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
20251
|
+
msg.setBillerconfigid(value);
|
|
20252
|
+
break;
|
|
20253
|
+
case 2:
|
|
20254
|
+
var value = /** @type {string} */ (reader.readString());
|
|
20255
|
+
msg.setSubject(value);
|
|
20256
|
+
break;
|
|
20257
|
+
case 3:
|
|
20258
|
+
var value = /** @type {string} */ (reader.readString());
|
|
20259
|
+
msg.setMessage(value);
|
|
20260
|
+
break;
|
|
20261
|
+
case 4:
|
|
20262
|
+
var value = /** @type {string} */ (reader.readString());
|
|
20263
|
+
msg.setPassword(value);
|
|
20264
|
+
break;
|
|
20265
|
+
default:
|
|
20266
|
+
reader.skipField();
|
|
20267
|
+
break;
|
|
20268
|
+
}
|
|
20269
|
+
}
|
|
20270
|
+
return msg;
|
|
20271
|
+
};
|
|
20272
|
+
|
|
20273
|
+
|
|
20274
|
+
/**
|
|
20275
|
+
* Class method variant: serializes the given message to binary data
|
|
20276
|
+
* (in protobuf wire format), writing to the given BinaryWriter.
|
|
20277
|
+
* @param {!proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest} message
|
|
20278
|
+
* @param {!jspb.BinaryWriter} writer
|
|
20279
|
+
*/
|
|
20280
|
+
proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest.serializeBinaryToWriter = function(message, writer) {
|
|
20281
|
+
message.serializeBinaryToWriter(writer);
|
|
20282
|
+
};
|
|
20283
|
+
|
|
20284
|
+
|
|
20285
|
+
/**
|
|
20286
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
20287
|
+
* @return {!Uint8Array}
|
|
20288
|
+
*/
|
|
20289
|
+
proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest.prototype.serializeBinary = function() {
|
|
20290
|
+
var writer = new jspb.BinaryWriter();
|
|
20291
|
+
this.serializeBinaryToWriter(writer);
|
|
20292
|
+
return writer.getResultBuffer();
|
|
20293
|
+
};
|
|
20294
|
+
|
|
20295
|
+
|
|
20296
|
+
/**
|
|
20297
|
+
* Serializes the message to binary data (in protobuf wire format),
|
|
20298
|
+
* writing to the given BinaryWriter.
|
|
20299
|
+
* @param {!jspb.BinaryWriter} writer
|
|
20300
|
+
*/
|
|
20301
|
+
proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest.prototype.serializeBinaryToWriter = function (writer) {
|
|
20302
|
+
var f = undefined;
|
|
20303
|
+
f = this.getBillerconfigid();
|
|
20304
|
+
if (f !== 0) {
|
|
20305
|
+
writer.writeInt64(
|
|
20306
|
+
1,
|
|
20307
|
+
f
|
|
20308
|
+
);
|
|
20309
|
+
}
|
|
20310
|
+
f = this.getSubject();
|
|
20311
|
+
if (f.length > 0) {
|
|
20312
|
+
writer.writeString(
|
|
20313
|
+
2,
|
|
20314
|
+
f
|
|
20315
|
+
);
|
|
20316
|
+
}
|
|
20317
|
+
f = this.getMessage();
|
|
20318
|
+
if (f.length > 0) {
|
|
20319
|
+
writer.writeString(
|
|
20320
|
+
3,
|
|
20321
|
+
f
|
|
20322
|
+
);
|
|
20323
|
+
}
|
|
20324
|
+
f = this.getPassword();
|
|
20325
|
+
if (f.length > 0) {
|
|
20326
|
+
writer.writeString(
|
|
20327
|
+
4,
|
|
20328
|
+
f
|
|
20329
|
+
);
|
|
20330
|
+
}
|
|
20331
|
+
};
|
|
20332
|
+
|
|
20333
|
+
|
|
20334
|
+
/**
|
|
20335
|
+
* Creates a deep clone of this proto. No data is shared with the original.
|
|
20336
|
+
* @return {!proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest} The clone.
|
|
20337
|
+
*/
|
|
20338
|
+
proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest.prototype.cloneMessage = function() {
|
|
20339
|
+
return /** @type {!proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest} */ (jspb.Message.cloneMessage(this));
|
|
20340
|
+
};
|
|
20341
|
+
|
|
20342
|
+
|
|
20343
|
+
/**
|
|
20344
|
+
* optional int64 billerConfigId = 1;
|
|
20345
|
+
* @return {number}
|
|
20346
|
+
*/
|
|
20347
|
+
proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest.prototype.getBillerconfigid = function() {
|
|
20348
|
+
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 1, 0));
|
|
20349
|
+
};
|
|
20350
|
+
|
|
20351
|
+
|
|
20352
|
+
/** @param {number} value */
|
|
20353
|
+
proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest.prototype.setBillerconfigid = function(value) {
|
|
20354
|
+
jspb.Message.setField(this, 1, value);
|
|
20355
|
+
};
|
|
20356
|
+
|
|
20357
|
+
|
|
20358
|
+
/**
|
|
20359
|
+
* optional string subject = 2;
|
|
20360
|
+
* @return {string}
|
|
20361
|
+
*/
|
|
20362
|
+
proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest.prototype.getSubject = function() {
|
|
20363
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 2, ""));
|
|
20364
|
+
};
|
|
20365
|
+
|
|
20366
|
+
|
|
20367
|
+
/** @param {string} value */
|
|
20368
|
+
proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest.prototype.setSubject = function(value) {
|
|
20369
|
+
jspb.Message.setField(this, 2, value);
|
|
20370
|
+
};
|
|
20371
|
+
|
|
20372
|
+
|
|
20373
|
+
/**
|
|
20374
|
+
* optional string message = 3;
|
|
20375
|
+
* @return {string}
|
|
20376
|
+
*/
|
|
20377
|
+
proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest.prototype.getMessage = function() {
|
|
20378
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 3, ""));
|
|
20379
|
+
};
|
|
20380
|
+
|
|
20381
|
+
|
|
20382
|
+
/** @param {string} value */
|
|
20383
|
+
proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest.prototype.setMessage = function(value) {
|
|
20384
|
+
jspb.Message.setField(this, 3, value);
|
|
20385
|
+
};
|
|
20386
|
+
|
|
20387
|
+
|
|
20388
|
+
/**
|
|
20389
|
+
* optional string password = 4;
|
|
20390
|
+
* @return {string}
|
|
20391
|
+
*/
|
|
20392
|
+
proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest.prototype.getPassword = function() {
|
|
20393
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 4, ""));
|
|
20394
|
+
};
|
|
20395
|
+
|
|
20396
|
+
|
|
20397
|
+
/** @param {string} value */
|
|
20398
|
+
proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest.prototype.setPassword = function(value) {
|
|
20399
|
+
jspb.Message.setField(this, 4, value);
|
|
20400
|
+
};
|
|
20401
|
+
|
|
20402
|
+
|
|
20403
|
+
|
|
20162
20404
|
/**
|
|
20163
20405
|
* Generated by JsPbCodeGenerator.
|
|
20164
20406
|
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
@@ -29736,6 +29978,182 @@ proto.sniipbillerapi.NotifyCustomersRequest.prototype.hasData = function() {
|
|
|
29736
29978
|
|
|
29737
29979
|
|
|
29738
29980
|
|
|
29981
|
+
/**
|
|
29982
|
+
* Generated by JsPbCodeGenerator.
|
|
29983
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
29984
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
29985
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
29986
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
29987
|
+
* valid.
|
|
29988
|
+
* @extends {jspb.Message}
|
|
29989
|
+
* @constructor
|
|
29990
|
+
*/
|
|
29991
|
+
proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest = function(opt_data) {
|
|
29992
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
29993
|
+
};
|
|
29994
|
+
goog.inherits(proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest, jspb.Message);
|
|
29995
|
+
if (goog.DEBUG && !COMPILED) {
|
|
29996
|
+
proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest.displayName = 'proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest';
|
|
29997
|
+
}
|
|
29998
|
+
|
|
29999
|
+
|
|
30000
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
30001
|
+
/**
|
|
30002
|
+
* Creates an object representation of this proto suitable for use in Soy templates.
|
|
30003
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
30004
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
30005
|
+
* For the list of reserved names please see:
|
|
30006
|
+
* com.google.apps.jspb.JsClassTemplate.JS_RESERVED_WORDS.
|
|
30007
|
+
* @param {boolean=} opt_includeInstance Whether to include the JSPB instance
|
|
30008
|
+
* for transitional soy proto support: http://goto/soy-param-migration
|
|
30009
|
+
* @return {!Object}
|
|
30010
|
+
*/
|
|
30011
|
+
proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest.prototype.toObject = function(opt_includeInstance) {
|
|
30012
|
+
return proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest.toObject(opt_includeInstance, this);
|
|
30013
|
+
};
|
|
30014
|
+
|
|
30015
|
+
|
|
30016
|
+
/**
|
|
30017
|
+
* Static version of the {@see toObject} method.
|
|
30018
|
+
* @param {boolean|undefined} includeInstance Whether to include the JSPB
|
|
30019
|
+
* instance for transitional soy proto support:
|
|
30020
|
+
* http://goto/soy-param-migration
|
|
30021
|
+
* @param {!proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest} msg The msg instance to transform.
|
|
30022
|
+
* @return {!Object}
|
|
30023
|
+
*/
|
|
30024
|
+
proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest.toObject = function(includeInstance, msg) {
|
|
30025
|
+
var f, obj = {
|
|
30026
|
+
data: (f = msg.getData()) && proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest.toObject(includeInstance, f)
|
|
30027
|
+
};
|
|
30028
|
+
|
|
30029
|
+
if (includeInstance) {
|
|
30030
|
+
obj.$jspbMessageInstance = msg;
|
|
30031
|
+
}
|
|
30032
|
+
return obj;
|
|
30033
|
+
};
|
|
30034
|
+
}
|
|
30035
|
+
|
|
30036
|
+
|
|
30037
|
+
/**
|
|
30038
|
+
* Deserializes binary data (in protobuf wire format).
|
|
30039
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
30040
|
+
* @return {!proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest}
|
|
30041
|
+
*/
|
|
30042
|
+
proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest.deserializeBinary = function(bytes) {
|
|
30043
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
30044
|
+
var msg = new proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest;
|
|
30045
|
+
return proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest.deserializeBinaryFromReader(msg, reader);
|
|
30046
|
+
};
|
|
30047
|
+
|
|
30048
|
+
|
|
30049
|
+
/**
|
|
30050
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
30051
|
+
* given reader into the given message object.
|
|
30052
|
+
* @param {!proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest} msg The message object to deserialize into.
|
|
30053
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
30054
|
+
* @return {!proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest}
|
|
30055
|
+
*/
|
|
30056
|
+
proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
30057
|
+
while (reader.nextField()) {
|
|
30058
|
+
if (reader.isEndGroup()) {
|
|
30059
|
+
break;
|
|
30060
|
+
}
|
|
30061
|
+
var field = reader.getFieldNumber();
|
|
30062
|
+
switch (field) {
|
|
30063
|
+
case 1:
|
|
30064
|
+
var value = new proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest;
|
|
30065
|
+
reader.readMessage(value,proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest.deserializeBinaryFromReader);
|
|
30066
|
+
msg.setData(value);
|
|
30067
|
+
break;
|
|
30068
|
+
default:
|
|
30069
|
+
reader.skipField();
|
|
30070
|
+
break;
|
|
30071
|
+
}
|
|
30072
|
+
}
|
|
30073
|
+
return msg;
|
|
30074
|
+
};
|
|
30075
|
+
|
|
30076
|
+
|
|
30077
|
+
/**
|
|
30078
|
+
* Class method variant: serializes the given message to binary data
|
|
30079
|
+
* (in protobuf wire format), writing to the given BinaryWriter.
|
|
30080
|
+
* @param {!proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest} message
|
|
30081
|
+
* @param {!jspb.BinaryWriter} writer
|
|
30082
|
+
*/
|
|
30083
|
+
proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest.serializeBinaryToWriter = function(message, writer) {
|
|
30084
|
+
message.serializeBinaryToWriter(writer);
|
|
30085
|
+
};
|
|
30086
|
+
|
|
30087
|
+
|
|
30088
|
+
/**
|
|
30089
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
30090
|
+
* @return {!Uint8Array}
|
|
30091
|
+
*/
|
|
30092
|
+
proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest.prototype.serializeBinary = function() {
|
|
30093
|
+
var writer = new jspb.BinaryWriter();
|
|
30094
|
+
this.serializeBinaryToWriter(writer);
|
|
30095
|
+
return writer.getResultBuffer();
|
|
30096
|
+
};
|
|
30097
|
+
|
|
30098
|
+
|
|
30099
|
+
/**
|
|
30100
|
+
* Serializes the message to binary data (in protobuf wire format),
|
|
30101
|
+
* writing to the given BinaryWriter.
|
|
30102
|
+
* @param {!jspb.BinaryWriter} writer
|
|
30103
|
+
*/
|
|
30104
|
+
proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest.prototype.serializeBinaryToWriter = function (writer) {
|
|
30105
|
+
var f = undefined;
|
|
30106
|
+
f = this.getData();
|
|
30107
|
+
if (f != null) {
|
|
30108
|
+
writer.writeMessage(
|
|
30109
|
+
1,
|
|
30110
|
+
f,
|
|
30111
|
+
proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest.serializeBinaryToWriter
|
|
30112
|
+
);
|
|
30113
|
+
}
|
|
30114
|
+
};
|
|
30115
|
+
|
|
30116
|
+
|
|
30117
|
+
/**
|
|
30118
|
+
* Creates a deep clone of this proto. No data is shared with the original.
|
|
30119
|
+
* @return {!proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest} The clone.
|
|
30120
|
+
*/
|
|
30121
|
+
proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest.prototype.cloneMessage = function() {
|
|
30122
|
+
return /** @type {!proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest} */ (jspb.Message.cloneMessage(this));
|
|
30123
|
+
};
|
|
30124
|
+
|
|
30125
|
+
|
|
30126
|
+
/**
|
|
30127
|
+
* optional CustomersNotifyWithBillerConfigIdRequest data = 1;
|
|
30128
|
+
* @return {proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest}
|
|
30129
|
+
*/
|
|
30130
|
+
proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest.prototype.getData = function() {
|
|
30131
|
+
return /** @type{proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest} */ (
|
|
30132
|
+
jspb.Message.getWrapperField(this, proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest, 1));
|
|
30133
|
+
};
|
|
30134
|
+
|
|
30135
|
+
|
|
30136
|
+
/** @param {proto.sniipbillerapi.CustomersNotifyWithBillerConfigIdRequest|undefined} value */
|
|
30137
|
+
proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest.prototype.setData = function(value) {
|
|
30138
|
+
jspb.Message.setWrapperField(this, 1, value);
|
|
30139
|
+
};
|
|
30140
|
+
|
|
30141
|
+
|
|
30142
|
+
proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest.prototype.clearData = function() {
|
|
30143
|
+
this.setData(undefined);
|
|
30144
|
+
};
|
|
30145
|
+
|
|
30146
|
+
|
|
30147
|
+
/**
|
|
30148
|
+
* Returns whether this field is set.
|
|
30149
|
+
* @return{!boolean}
|
|
30150
|
+
*/
|
|
30151
|
+
proto.sniipbillerapi.NotifyCustomersWithBillerConfigIdRequest.prototype.hasData = function() {
|
|
30152
|
+
return jspb.Message.getField(this, 1) != null;
|
|
30153
|
+
};
|
|
30154
|
+
|
|
30155
|
+
|
|
30156
|
+
|
|
29739
30157
|
/**
|
|
29740
30158
|
* Generated by JsPbCodeGenerator.
|
|
29741
30159
|
* @param {Array=} opt_data Optional initial data array, typically from a
|