@sniipwebmaster/biller-service-client-grpcweb 25.7.8878 → 25.7.8902
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.
|
@@ -5812,5 +5812,127 @@ proto.sniipbillerapi.SniipBillerAPIServicePromiseClient.prototype.updateSmeConfi
|
|
|
5812
5812
|
};
|
|
5813
5813
|
|
|
5814
5814
|
|
|
5815
|
+
/**
|
|
5816
|
+
* @const
|
|
5817
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
5818
|
+
* !proto.sniipbillerapi.GetBillerBusinessDetailsRequest,
|
|
5819
|
+
* !proto.sniipbillerapi.BillerBusinessDetailsResponse>}
|
|
5820
|
+
*/
|
|
5821
|
+
const methodDescriptor_SniipBillerAPIService_GetBillerBusinessDetails = new grpc.web.MethodDescriptor(
|
|
5822
|
+
'/sniipbillerapi.SniipBillerAPIService/GetBillerBusinessDetails',
|
|
5823
|
+
grpc.web.MethodType.UNARY,
|
|
5824
|
+
proto.sniipbillerapi.GetBillerBusinessDetailsRequest,
|
|
5825
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse,
|
|
5826
|
+
/**
|
|
5827
|
+
* @param {!proto.sniipbillerapi.GetBillerBusinessDetailsRequest} request
|
|
5828
|
+
* @return {!Uint8Array}
|
|
5829
|
+
*/
|
|
5830
|
+
function(request) {
|
|
5831
|
+
return request.serializeBinary();
|
|
5832
|
+
},
|
|
5833
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.deserializeBinary
|
|
5834
|
+
);
|
|
5835
|
+
|
|
5836
|
+
|
|
5837
|
+
/**
|
|
5838
|
+
* @param {!proto.sniipbillerapi.GetBillerBusinessDetailsRequest} request The
|
|
5839
|
+
* request proto
|
|
5840
|
+
* @param {?Object<string, string>} metadata User defined
|
|
5841
|
+
* call metadata
|
|
5842
|
+
* @param {function(?grpc.web.RpcError, ?proto.sniipbillerapi.BillerBusinessDetailsResponse)}
|
|
5843
|
+
* callback The callback function(error, response)
|
|
5844
|
+
* @return {!grpc.web.ClientReadableStream<!proto.sniipbillerapi.BillerBusinessDetailsResponse>|undefined}
|
|
5845
|
+
* The XHR Node Readable Stream
|
|
5846
|
+
*/
|
|
5847
|
+
proto.sniipbillerapi.SniipBillerAPIServiceClient.prototype.getBillerBusinessDetails =
|
|
5848
|
+
function(request, metadata, callback) {
|
|
5849
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
5850
|
+
'/sniipbillerapi.SniipBillerAPIService/GetBillerBusinessDetails',
|
|
5851
|
+
request,
|
|
5852
|
+
metadata || {},
|
|
5853
|
+
methodDescriptor_SniipBillerAPIService_GetBillerBusinessDetails,
|
|
5854
|
+
callback);
|
|
5855
|
+
};
|
|
5856
|
+
|
|
5857
|
+
|
|
5858
|
+
/**
|
|
5859
|
+
* @param {!proto.sniipbillerapi.GetBillerBusinessDetailsRequest} request The
|
|
5860
|
+
* request proto
|
|
5861
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
5862
|
+
* call metadata
|
|
5863
|
+
* @return {!Promise<!proto.sniipbillerapi.BillerBusinessDetailsResponse>}
|
|
5864
|
+
* Promise that resolves to the response
|
|
5865
|
+
*/
|
|
5866
|
+
proto.sniipbillerapi.SniipBillerAPIServicePromiseClient.prototype.getBillerBusinessDetails =
|
|
5867
|
+
function(request, metadata) {
|
|
5868
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
5869
|
+
'/sniipbillerapi.SniipBillerAPIService/GetBillerBusinessDetails',
|
|
5870
|
+
request,
|
|
5871
|
+
metadata || {},
|
|
5872
|
+
methodDescriptor_SniipBillerAPIService_GetBillerBusinessDetails);
|
|
5873
|
+
};
|
|
5874
|
+
|
|
5875
|
+
|
|
5876
|
+
/**
|
|
5877
|
+
* @const
|
|
5878
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
5879
|
+
* !proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest,
|
|
5880
|
+
* !proto.sniipbillerapi.ResponseCode>}
|
|
5881
|
+
*/
|
|
5882
|
+
const methodDescriptor_SniipBillerAPIService_UpdateBillerBusinessDetails = new grpc.web.MethodDescriptor(
|
|
5883
|
+
'/sniipbillerapi.SniipBillerAPIService/UpdateBillerBusinessDetails',
|
|
5884
|
+
grpc.web.MethodType.UNARY,
|
|
5885
|
+
proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest,
|
|
5886
|
+
proto.sniipbillerapi.ResponseCode,
|
|
5887
|
+
/**
|
|
5888
|
+
* @param {!proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest} request
|
|
5889
|
+
* @return {!Uint8Array}
|
|
5890
|
+
*/
|
|
5891
|
+
function(request) {
|
|
5892
|
+
return request.serializeBinary();
|
|
5893
|
+
},
|
|
5894
|
+
proto.sniipbillerapi.ResponseCode.deserializeBinary
|
|
5895
|
+
);
|
|
5896
|
+
|
|
5897
|
+
|
|
5898
|
+
/**
|
|
5899
|
+
* @param {!proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest} request The
|
|
5900
|
+
* request proto
|
|
5901
|
+
* @param {?Object<string, string>} metadata User defined
|
|
5902
|
+
* call metadata
|
|
5903
|
+
* @param {function(?grpc.web.RpcError, ?proto.sniipbillerapi.ResponseCode)}
|
|
5904
|
+
* callback The callback function(error, response)
|
|
5905
|
+
* @return {!grpc.web.ClientReadableStream<!proto.sniipbillerapi.ResponseCode>|undefined}
|
|
5906
|
+
* The XHR Node Readable Stream
|
|
5907
|
+
*/
|
|
5908
|
+
proto.sniipbillerapi.SniipBillerAPIServiceClient.prototype.updateBillerBusinessDetails =
|
|
5909
|
+
function(request, metadata, callback) {
|
|
5910
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
5911
|
+
'/sniipbillerapi.SniipBillerAPIService/UpdateBillerBusinessDetails',
|
|
5912
|
+
request,
|
|
5913
|
+
metadata || {},
|
|
5914
|
+
methodDescriptor_SniipBillerAPIService_UpdateBillerBusinessDetails,
|
|
5915
|
+
callback);
|
|
5916
|
+
};
|
|
5917
|
+
|
|
5918
|
+
|
|
5919
|
+
/**
|
|
5920
|
+
* @param {!proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest} request The
|
|
5921
|
+
* request proto
|
|
5922
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
5923
|
+
* call metadata
|
|
5924
|
+
* @return {!Promise<!proto.sniipbillerapi.ResponseCode>}
|
|
5925
|
+
* Promise that resolves to the response
|
|
5926
|
+
*/
|
|
5927
|
+
proto.sniipbillerapi.SniipBillerAPIServicePromiseClient.prototype.updateBillerBusinessDetails =
|
|
5928
|
+
function(request, metadata) {
|
|
5929
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
5930
|
+
'/sniipbillerapi.SniipBillerAPIService/UpdateBillerBusinessDetails',
|
|
5931
|
+
request,
|
|
5932
|
+
metadata || {},
|
|
5933
|
+
methodDescriptor_SniipBillerAPIService_UpdateBillerBusinessDetails);
|
|
5934
|
+
};
|
|
5935
|
+
|
|
5936
|
+
|
|
5815
5937
|
module.exports = proto.sniipbillerapi;
|
|
5816
5938
|
|
|
@@ -51,6 +51,7 @@ goog.exportSymbol('proto.sniipbillerapi.BillerAddressRequest', null, global);
|
|
|
51
51
|
goog.exportSymbol('proto.sniipbillerapi.BillerAddressResponse', null, global);
|
|
52
52
|
goog.exportSymbol('proto.sniipbillerapi.BillerBankAccountForSniipPaymentGatewayRequest', null, global);
|
|
53
53
|
goog.exportSymbol('proto.sniipbillerapi.BillerBankAccountForSniipPaymentGatewayResponse', null, global);
|
|
54
|
+
goog.exportSymbol('proto.sniipbillerapi.BillerBusinessDetailsResponse', null, global);
|
|
54
55
|
goog.exportSymbol('proto.sniipbillerapi.BillerConfig', null, global);
|
|
55
56
|
goog.exportSymbol('proto.sniipbillerapi.BillerConfigBehaviourOverrides', null, global);
|
|
56
57
|
goog.exportSymbol('proto.sniipbillerapi.BillerConfigDetails', null, global);
|
|
@@ -113,6 +114,7 @@ goog.exportSymbol('proto.sniipbillerapi.GetAllMbillingPermittedBillersRequest',
|
|
|
113
114
|
goog.exportSymbol('proto.sniipbillerapi.GetBankAccountForSniipPaymentGatewayRequest', null, global);
|
|
114
115
|
goog.exportSymbol('proto.sniipbillerapi.GetBehaviourOverridesForBillerConfigsResponse', null, global);
|
|
115
116
|
goog.exportSymbol('proto.sniipbillerapi.GetBillerAddressRequest', null, global);
|
|
117
|
+
goog.exportSymbol('proto.sniipbillerapi.GetBillerBusinessDetailsRequest', null, global);
|
|
116
118
|
goog.exportSymbol('proto.sniipbillerapi.GetBillerByBillerConfigIdInternalRequest', null, global);
|
|
117
119
|
goog.exportSymbol('proto.sniipbillerapi.GetBillerConfigByAbaDetailsRequest', null, global);
|
|
118
120
|
goog.exportSymbol('proto.sniipbillerapi.GetBillerConfigRevisionsRequest', null, global);
|
|
@@ -202,6 +204,7 @@ goog.exportSymbol('proto.sniipbillerapi.Timezone', null, global);
|
|
|
202
204
|
goog.exportSymbol('proto.sniipbillerapi.TimezonesResponse', null, global);
|
|
203
205
|
goog.exportSymbol('proto.sniipbillerapi.UpdateAmountPermittedSmeBillerConfigRequest', null, global);
|
|
204
206
|
goog.exportSymbol('proto.sniipbillerapi.UpdateBankAccountStatusRequest', null, global);
|
|
207
|
+
goog.exportSymbol('proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest', null, global);
|
|
205
208
|
goog.exportSymbol('proto.sniipbillerapi.UpdateBillerDetailsInternalRequest', null, global);
|
|
206
209
|
goog.exportSymbol('proto.sniipbillerapi.UpdateBillerDetailsRequest', null, global);
|
|
207
210
|
goog.exportSymbol('proto.sniipbillerapi.UpdateBillerIndustrySectorRequest', null, global);
|
|
@@ -4314,6 +4317,69 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
4314
4317
|
*/
|
|
4315
4318
|
proto.sniipbillerapi.Indicator.displayName = 'proto.sniipbillerapi.Indicator';
|
|
4316
4319
|
}
|
|
4320
|
+
/**
|
|
4321
|
+
* Generated by JsPbCodeGenerator.
|
|
4322
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
4323
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
4324
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
4325
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
4326
|
+
* valid.
|
|
4327
|
+
* @extends {jspb.Message}
|
|
4328
|
+
* @constructor
|
|
4329
|
+
*/
|
|
4330
|
+
proto.sniipbillerapi.GetBillerBusinessDetailsRequest = function(opt_data) {
|
|
4331
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
4332
|
+
};
|
|
4333
|
+
goog.inherits(proto.sniipbillerapi.GetBillerBusinessDetailsRequest, jspb.Message);
|
|
4334
|
+
if (goog.DEBUG && !COMPILED) {
|
|
4335
|
+
/**
|
|
4336
|
+
* @public
|
|
4337
|
+
* @override
|
|
4338
|
+
*/
|
|
4339
|
+
proto.sniipbillerapi.GetBillerBusinessDetailsRequest.displayName = 'proto.sniipbillerapi.GetBillerBusinessDetailsRequest';
|
|
4340
|
+
}
|
|
4341
|
+
/**
|
|
4342
|
+
* Generated by JsPbCodeGenerator.
|
|
4343
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
4344
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
4345
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
4346
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
4347
|
+
* valid.
|
|
4348
|
+
* @extends {jspb.Message}
|
|
4349
|
+
* @constructor
|
|
4350
|
+
*/
|
|
4351
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse = function(opt_data) {
|
|
4352
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
4353
|
+
};
|
|
4354
|
+
goog.inherits(proto.sniipbillerapi.BillerBusinessDetailsResponse, jspb.Message);
|
|
4355
|
+
if (goog.DEBUG && !COMPILED) {
|
|
4356
|
+
/**
|
|
4357
|
+
* @public
|
|
4358
|
+
* @override
|
|
4359
|
+
*/
|
|
4360
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.displayName = 'proto.sniipbillerapi.BillerBusinessDetailsResponse';
|
|
4361
|
+
}
|
|
4362
|
+
/**
|
|
4363
|
+
* Generated by JsPbCodeGenerator.
|
|
4364
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
|
4365
|
+
* server response, or constructed directly in Javascript. The array is used
|
|
4366
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
|
4367
|
+
* If no data is provided, the constructed object will be empty, but still
|
|
4368
|
+
* valid.
|
|
4369
|
+
* @extends {jspb.Message}
|
|
4370
|
+
* @constructor
|
|
4371
|
+
*/
|
|
4372
|
+
proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest = function(opt_data) {
|
|
4373
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
|
4374
|
+
};
|
|
4375
|
+
goog.inherits(proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest, jspb.Message);
|
|
4376
|
+
if (goog.DEBUG && !COMPILED) {
|
|
4377
|
+
/**
|
|
4378
|
+
* @public
|
|
4379
|
+
* @override
|
|
4380
|
+
*/
|
|
4381
|
+
proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest.displayName = 'proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest';
|
|
4382
|
+
}
|
|
4317
4383
|
|
|
4318
4384
|
|
|
4319
4385
|
|
|
@@ -51748,6 +51814,927 @@ proto.sniipbillerapi.Indicator.prototype.setInoperative = function(value) {
|
|
|
51748
51814
|
};
|
|
51749
51815
|
|
|
51750
51816
|
|
|
51817
|
+
|
|
51818
|
+
|
|
51819
|
+
|
|
51820
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
51821
|
+
/**
|
|
51822
|
+
* Creates an object representation of this proto.
|
|
51823
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
51824
|
+
* Optional fields that are not set will be set to undefined.
|
|
51825
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
51826
|
+
* For the list of reserved names please see:
|
|
51827
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
51828
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
51829
|
+
* JSPB instance for transitional soy proto support:
|
|
51830
|
+
* http://goto/soy-param-migration
|
|
51831
|
+
* @return {!Object}
|
|
51832
|
+
*/
|
|
51833
|
+
proto.sniipbillerapi.GetBillerBusinessDetailsRequest.prototype.toObject = function(opt_includeInstance) {
|
|
51834
|
+
return proto.sniipbillerapi.GetBillerBusinessDetailsRequest.toObject(opt_includeInstance, this);
|
|
51835
|
+
};
|
|
51836
|
+
|
|
51837
|
+
|
|
51838
|
+
/**
|
|
51839
|
+
* Static version of the {@see toObject} method.
|
|
51840
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
51841
|
+
* the JSPB instance for transitional soy proto support:
|
|
51842
|
+
* http://goto/soy-param-migration
|
|
51843
|
+
* @param {!proto.sniipbillerapi.GetBillerBusinessDetailsRequest} msg The msg instance to transform.
|
|
51844
|
+
* @return {!Object}
|
|
51845
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
51846
|
+
*/
|
|
51847
|
+
proto.sniipbillerapi.GetBillerBusinessDetailsRequest.toObject = function(includeInstance, msg) {
|
|
51848
|
+
var f, obj = {
|
|
51849
|
+
billerid: jspb.Message.getFieldWithDefault(msg, 1, 0)
|
|
51850
|
+
};
|
|
51851
|
+
|
|
51852
|
+
if (includeInstance) {
|
|
51853
|
+
obj.$jspbMessageInstance = msg;
|
|
51854
|
+
}
|
|
51855
|
+
return obj;
|
|
51856
|
+
};
|
|
51857
|
+
}
|
|
51858
|
+
|
|
51859
|
+
|
|
51860
|
+
/**
|
|
51861
|
+
* Deserializes binary data (in protobuf wire format).
|
|
51862
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
51863
|
+
* @return {!proto.sniipbillerapi.GetBillerBusinessDetailsRequest}
|
|
51864
|
+
*/
|
|
51865
|
+
proto.sniipbillerapi.GetBillerBusinessDetailsRequest.deserializeBinary = function(bytes) {
|
|
51866
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
51867
|
+
var msg = new proto.sniipbillerapi.GetBillerBusinessDetailsRequest;
|
|
51868
|
+
return proto.sniipbillerapi.GetBillerBusinessDetailsRequest.deserializeBinaryFromReader(msg, reader);
|
|
51869
|
+
};
|
|
51870
|
+
|
|
51871
|
+
|
|
51872
|
+
/**
|
|
51873
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
51874
|
+
* given reader into the given message object.
|
|
51875
|
+
* @param {!proto.sniipbillerapi.GetBillerBusinessDetailsRequest} msg The message object to deserialize into.
|
|
51876
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
51877
|
+
* @return {!proto.sniipbillerapi.GetBillerBusinessDetailsRequest}
|
|
51878
|
+
*/
|
|
51879
|
+
proto.sniipbillerapi.GetBillerBusinessDetailsRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
51880
|
+
while (reader.nextField()) {
|
|
51881
|
+
if (reader.isEndGroup()) {
|
|
51882
|
+
break;
|
|
51883
|
+
}
|
|
51884
|
+
var field = reader.getFieldNumber();
|
|
51885
|
+
switch (field) {
|
|
51886
|
+
case 1:
|
|
51887
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
51888
|
+
msg.setBillerid(value);
|
|
51889
|
+
break;
|
|
51890
|
+
default:
|
|
51891
|
+
reader.skipField();
|
|
51892
|
+
break;
|
|
51893
|
+
}
|
|
51894
|
+
}
|
|
51895
|
+
return msg;
|
|
51896
|
+
};
|
|
51897
|
+
|
|
51898
|
+
|
|
51899
|
+
/**
|
|
51900
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
51901
|
+
* @return {!Uint8Array}
|
|
51902
|
+
*/
|
|
51903
|
+
proto.sniipbillerapi.GetBillerBusinessDetailsRequest.prototype.serializeBinary = function() {
|
|
51904
|
+
var writer = new jspb.BinaryWriter();
|
|
51905
|
+
proto.sniipbillerapi.GetBillerBusinessDetailsRequest.serializeBinaryToWriter(this, writer);
|
|
51906
|
+
return writer.getResultBuffer();
|
|
51907
|
+
};
|
|
51908
|
+
|
|
51909
|
+
|
|
51910
|
+
/**
|
|
51911
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
51912
|
+
* format), writing to the given BinaryWriter.
|
|
51913
|
+
* @param {!proto.sniipbillerapi.GetBillerBusinessDetailsRequest} message
|
|
51914
|
+
* @param {!jspb.BinaryWriter} writer
|
|
51915
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
51916
|
+
*/
|
|
51917
|
+
proto.sniipbillerapi.GetBillerBusinessDetailsRequest.serializeBinaryToWriter = function(message, writer) {
|
|
51918
|
+
var f = undefined;
|
|
51919
|
+
f = message.getBillerid();
|
|
51920
|
+
if (f !== 0) {
|
|
51921
|
+
writer.writeInt64(
|
|
51922
|
+
1,
|
|
51923
|
+
f
|
|
51924
|
+
);
|
|
51925
|
+
}
|
|
51926
|
+
};
|
|
51927
|
+
|
|
51928
|
+
|
|
51929
|
+
/**
|
|
51930
|
+
* optional int64 billerId = 1;
|
|
51931
|
+
* @return {number}
|
|
51932
|
+
*/
|
|
51933
|
+
proto.sniipbillerapi.GetBillerBusinessDetailsRequest.prototype.getBillerid = function() {
|
|
51934
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
|
|
51935
|
+
};
|
|
51936
|
+
|
|
51937
|
+
|
|
51938
|
+
/**
|
|
51939
|
+
* @param {number} value
|
|
51940
|
+
* @return {!proto.sniipbillerapi.GetBillerBusinessDetailsRequest} returns this
|
|
51941
|
+
*/
|
|
51942
|
+
proto.sniipbillerapi.GetBillerBusinessDetailsRequest.prototype.setBillerid = function(value) {
|
|
51943
|
+
return jspb.Message.setProto3IntField(this, 1, value);
|
|
51944
|
+
};
|
|
51945
|
+
|
|
51946
|
+
|
|
51947
|
+
|
|
51948
|
+
|
|
51949
|
+
|
|
51950
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
51951
|
+
/**
|
|
51952
|
+
* Creates an object representation of this proto.
|
|
51953
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
51954
|
+
* Optional fields that are not set will be set to undefined.
|
|
51955
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
51956
|
+
* For the list of reserved names please see:
|
|
51957
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
51958
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
51959
|
+
* JSPB instance for transitional soy proto support:
|
|
51960
|
+
* http://goto/soy-param-migration
|
|
51961
|
+
* @return {!Object}
|
|
51962
|
+
*/
|
|
51963
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.toObject = function(opt_includeInstance) {
|
|
51964
|
+
return proto.sniipbillerapi.BillerBusinessDetailsResponse.toObject(opt_includeInstance, this);
|
|
51965
|
+
};
|
|
51966
|
+
|
|
51967
|
+
|
|
51968
|
+
/**
|
|
51969
|
+
* Static version of the {@see toObject} method.
|
|
51970
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
51971
|
+
* the JSPB instance for transitional soy proto support:
|
|
51972
|
+
* http://goto/soy-param-migration
|
|
51973
|
+
* @param {!proto.sniipbillerapi.BillerBusinessDetailsResponse} msg The msg instance to transform.
|
|
51974
|
+
* @return {!Object}
|
|
51975
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
51976
|
+
*/
|
|
51977
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.toObject = function(includeInstance, msg) {
|
|
51978
|
+
var f, obj = {
|
|
51979
|
+
responsecode: (f = msg.getResponsecode()) && proto.sniipbillerapi.ResponseCode.toObject(includeInstance, f),
|
|
51980
|
+
name: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
51981
|
+
abn: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
51982
|
+
billeremail: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
51983
|
+
contactphone: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
51984
|
+
industrycode: jspb.Message.getFieldWithDefault(msg, 6, 0),
|
|
51985
|
+
industrysectorname: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
51986
|
+
industrycomment: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
51987
|
+
timezone: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
51988
|
+
logo: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
51989
|
+
internaldescription: jspb.Message.getFieldWithDefault(msg, 11, "")
|
|
51990
|
+
};
|
|
51991
|
+
|
|
51992
|
+
if (includeInstance) {
|
|
51993
|
+
obj.$jspbMessageInstance = msg;
|
|
51994
|
+
}
|
|
51995
|
+
return obj;
|
|
51996
|
+
};
|
|
51997
|
+
}
|
|
51998
|
+
|
|
51999
|
+
|
|
52000
|
+
/**
|
|
52001
|
+
* Deserializes binary data (in protobuf wire format).
|
|
52002
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
52003
|
+
* @return {!proto.sniipbillerapi.BillerBusinessDetailsResponse}
|
|
52004
|
+
*/
|
|
52005
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.deserializeBinary = function(bytes) {
|
|
52006
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
52007
|
+
var msg = new proto.sniipbillerapi.BillerBusinessDetailsResponse;
|
|
52008
|
+
return proto.sniipbillerapi.BillerBusinessDetailsResponse.deserializeBinaryFromReader(msg, reader);
|
|
52009
|
+
};
|
|
52010
|
+
|
|
52011
|
+
|
|
52012
|
+
/**
|
|
52013
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
52014
|
+
* given reader into the given message object.
|
|
52015
|
+
* @param {!proto.sniipbillerapi.BillerBusinessDetailsResponse} msg The message object to deserialize into.
|
|
52016
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
52017
|
+
* @return {!proto.sniipbillerapi.BillerBusinessDetailsResponse}
|
|
52018
|
+
*/
|
|
52019
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.deserializeBinaryFromReader = function(msg, reader) {
|
|
52020
|
+
while (reader.nextField()) {
|
|
52021
|
+
if (reader.isEndGroup()) {
|
|
52022
|
+
break;
|
|
52023
|
+
}
|
|
52024
|
+
var field = reader.getFieldNumber();
|
|
52025
|
+
switch (field) {
|
|
52026
|
+
case 1:
|
|
52027
|
+
var value = new proto.sniipbillerapi.ResponseCode;
|
|
52028
|
+
reader.readMessage(value,proto.sniipbillerapi.ResponseCode.deserializeBinaryFromReader);
|
|
52029
|
+
msg.setResponsecode(value);
|
|
52030
|
+
break;
|
|
52031
|
+
case 2:
|
|
52032
|
+
var value = /** @type {string} */ (reader.readString());
|
|
52033
|
+
msg.setName(value);
|
|
52034
|
+
break;
|
|
52035
|
+
case 3:
|
|
52036
|
+
var value = /** @type {string} */ (reader.readString());
|
|
52037
|
+
msg.setAbn(value);
|
|
52038
|
+
break;
|
|
52039
|
+
case 4:
|
|
52040
|
+
var value = /** @type {string} */ (reader.readString());
|
|
52041
|
+
msg.setBilleremail(value);
|
|
52042
|
+
break;
|
|
52043
|
+
case 5:
|
|
52044
|
+
var value = /** @type {string} */ (reader.readString());
|
|
52045
|
+
msg.setContactphone(value);
|
|
52046
|
+
break;
|
|
52047
|
+
case 6:
|
|
52048
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
52049
|
+
msg.setIndustrycode(value);
|
|
52050
|
+
break;
|
|
52051
|
+
case 7:
|
|
52052
|
+
var value = /** @type {string} */ (reader.readString());
|
|
52053
|
+
msg.setIndustrysectorname(value);
|
|
52054
|
+
break;
|
|
52055
|
+
case 8:
|
|
52056
|
+
var value = /** @type {string} */ (reader.readString());
|
|
52057
|
+
msg.setIndustrycomment(value);
|
|
52058
|
+
break;
|
|
52059
|
+
case 9:
|
|
52060
|
+
var value = /** @type {string} */ (reader.readString());
|
|
52061
|
+
msg.setTimezone(value);
|
|
52062
|
+
break;
|
|
52063
|
+
case 10:
|
|
52064
|
+
var value = /** @type {string} */ (reader.readString());
|
|
52065
|
+
msg.setLogo(value);
|
|
52066
|
+
break;
|
|
52067
|
+
case 11:
|
|
52068
|
+
var value = /** @type {string} */ (reader.readString());
|
|
52069
|
+
msg.setInternaldescription(value);
|
|
52070
|
+
break;
|
|
52071
|
+
default:
|
|
52072
|
+
reader.skipField();
|
|
52073
|
+
break;
|
|
52074
|
+
}
|
|
52075
|
+
}
|
|
52076
|
+
return msg;
|
|
52077
|
+
};
|
|
52078
|
+
|
|
52079
|
+
|
|
52080
|
+
/**
|
|
52081
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
52082
|
+
* @return {!Uint8Array}
|
|
52083
|
+
*/
|
|
52084
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.serializeBinary = function() {
|
|
52085
|
+
var writer = new jspb.BinaryWriter();
|
|
52086
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.serializeBinaryToWriter(this, writer);
|
|
52087
|
+
return writer.getResultBuffer();
|
|
52088
|
+
};
|
|
52089
|
+
|
|
52090
|
+
|
|
52091
|
+
/**
|
|
52092
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
52093
|
+
* format), writing to the given BinaryWriter.
|
|
52094
|
+
* @param {!proto.sniipbillerapi.BillerBusinessDetailsResponse} message
|
|
52095
|
+
* @param {!jspb.BinaryWriter} writer
|
|
52096
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
52097
|
+
*/
|
|
52098
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.serializeBinaryToWriter = function(message, writer) {
|
|
52099
|
+
var f = undefined;
|
|
52100
|
+
f = message.getResponsecode();
|
|
52101
|
+
if (f != null) {
|
|
52102
|
+
writer.writeMessage(
|
|
52103
|
+
1,
|
|
52104
|
+
f,
|
|
52105
|
+
proto.sniipbillerapi.ResponseCode.serializeBinaryToWriter
|
|
52106
|
+
);
|
|
52107
|
+
}
|
|
52108
|
+
f = message.getName();
|
|
52109
|
+
if (f.length > 0) {
|
|
52110
|
+
writer.writeString(
|
|
52111
|
+
2,
|
|
52112
|
+
f
|
|
52113
|
+
);
|
|
52114
|
+
}
|
|
52115
|
+
f = message.getAbn();
|
|
52116
|
+
if (f.length > 0) {
|
|
52117
|
+
writer.writeString(
|
|
52118
|
+
3,
|
|
52119
|
+
f
|
|
52120
|
+
);
|
|
52121
|
+
}
|
|
52122
|
+
f = message.getBilleremail();
|
|
52123
|
+
if (f.length > 0) {
|
|
52124
|
+
writer.writeString(
|
|
52125
|
+
4,
|
|
52126
|
+
f
|
|
52127
|
+
);
|
|
52128
|
+
}
|
|
52129
|
+
f = message.getContactphone();
|
|
52130
|
+
if (f.length > 0) {
|
|
52131
|
+
writer.writeString(
|
|
52132
|
+
5,
|
|
52133
|
+
f
|
|
52134
|
+
);
|
|
52135
|
+
}
|
|
52136
|
+
f = message.getIndustrycode();
|
|
52137
|
+
if (f !== 0) {
|
|
52138
|
+
writer.writeInt32(
|
|
52139
|
+
6,
|
|
52140
|
+
f
|
|
52141
|
+
);
|
|
52142
|
+
}
|
|
52143
|
+
f = message.getIndustrysectorname();
|
|
52144
|
+
if (f.length > 0) {
|
|
52145
|
+
writer.writeString(
|
|
52146
|
+
7,
|
|
52147
|
+
f
|
|
52148
|
+
);
|
|
52149
|
+
}
|
|
52150
|
+
f = message.getIndustrycomment();
|
|
52151
|
+
if (f.length > 0) {
|
|
52152
|
+
writer.writeString(
|
|
52153
|
+
8,
|
|
52154
|
+
f
|
|
52155
|
+
);
|
|
52156
|
+
}
|
|
52157
|
+
f = message.getTimezone();
|
|
52158
|
+
if (f.length > 0) {
|
|
52159
|
+
writer.writeString(
|
|
52160
|
+
9,
|
|
52161
|
+
f
|
|
52162
|
+
);
|
|
52163
|
+
}
|
|
52164
|
+
f = message.getLogo();
|
|
52165
|
+
if (f.length > 0) {
|
|
52166
|
+
writer.writeString(
|
|
52167
|
+
10,
|
|
52168
|
+
f
|
|
52169
|
+
);
|
|
52170
|
+
}
|
|
52171
|
+
f = message.getInternaldescription();
|
|
52172
|
+
if (f.length > 0) {
|
|
52173
|
+
writer.writeString(
|
|
52174
|
+
11,
|
|
52175
|
+
f
|
|
52176
|
+
);
|
|
52177
|
+
}
|
|
52178
|
+
};
|
|
52179
|
+
|
|
52180
|
+
|
|
52181
|
+
/**
|
|
52182
|
+
* optional ResponseCode responseCode = 1;
|
|
52183
|
+
* @return {?proto.sniipbillerapi.ResponseCode}
|
|
52184
|
+
*/
|
|
52185
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.getResponsecode = function() {
|
|
52186
|
+
return /** @type{?proto.sniipbillerapi.ResponseCode} */ (
|
|
52187
|
+
jspb.Message.getWrapperField(this, proto.sniipbillerapi.ResponseCode, 1));
|
|
52188
|
+
};
|
|
52189
|
+
|
|
52190
|
+
|
|
52191
|
+
/**
|
|
52192
|
+
* @param {?proto.sniipbillerapi.ResponseCode|undefined} value
|
|
52193
|
+
* @return {!proto.sniipbillerapi.BillerBusinessDetailsResponse} returns this
|
|
52194
|
+
*/
|
|
52195
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.setResponsecode = function(value) {
|
|
52196
|
+
return jspb.Message.setWrapperField(this, 1, value);
|
|
52197
|
+
};
|
|
52198
|
+
|
|
52199
|
+
|
|
52200
|
+
/**
|
|
52201
|
+
* Clears the message field making it undefined.
|
|
52202
|
+
* @return {!proto.sniipbillerapi.BillerBusinessDetailsResponse} returns this
|
|
52203
|
+
*/
|
|
52204
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.clearResponsecode = function() {
|
|
52205
|
+
return this.setResponsecode(undefined);
|
|
52206
|
+
};
|
|
52207
|
+
|
|
52208
|
+
|
|
52209
|
+
/**
|
|
52210
|
+
* Returns whether this field is set.
|
|
52211
|
+
* @return {boolean}
|
|
52212
|
+
*/
|
|
52213
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.hasResponsecode = function() {
|
|
52214
|
+
return jspb.Message.getField(this, 1) != null;
|
|
52215
|
+
};
|
|
52216
|
+
|
|
52217
|
+
|
|
52218
|
+
/**
|
|
52219
|
+
* optional string name = 2;
|
|
52220
|
+
* @return {string}
|
|
52221
|
+
*/
|
|
52222
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.getName = function() {
|
|
52223
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
52224
|
+
};
|
|
52225
|
+
|
|
52226
|
+
|
|
52227
|
+
/**
|
|
52228
|
+
* @param {string} value
|
|
52229
|
+
* @return {!proto.sniipbillerapi.BillerBusinessDetailsResponse} returns this
|
|
52230
|
+
*/
|
|
52231
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.setName = function(value) {
|
|
52232
|
+
return jspb.Message.setProto3StringField(this, 2, value);
|
|
52233
|
+
};
|
|
52234
|
+
|
|
52235
|
+
|
|
52236
|
+
/**
|
|
52237
|
+
* optional string abn = 3;
|
|
52238
|
+
* @return {string}
|
|
52239
|
+
*/
|
|
52240
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.getAbn = function() {
|
|
52241
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
52242
|
+
};
|
|
52243
|
+
|
|
52244
|
+
|
|
52245
|
+
/**
|
|
52246
|
+
* @param {string} value
|
|
52247
|
+
* @return {!proto.sniipbillerapi.BillerBusinessDetailsResponse} returns this
|
|
52248
|
+
*/
|
|
52249
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.setAbn = function(value) {
|
|
52250
|
+
return jspb.Message.setProto3StringField(this, 3, value);
|
|
52251
|
+
};
|
|
52252
|
+
|
|
52253
|
+
|
|
52254
|
+
/**
|
|
52255
|
+
* optional string billerEmail = 4;
|
|
52256
|
+
* @return {string}
|
|
52257
|
+
*/
|
|
52258
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.getBilleremail = function() {
|
|
52259
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
52260
|
+
};
|
|
52261
|
+
|
|
52262
|
+
|
|
52263
|
+
/**
|
|
52264
|
+
* @param {string} value
|
|
52265
|
+
* @return {!proto.sniipbillerapi.BillerBusinessDetailsResponse} returns this
|
|
52266
|
+
*/
|
|
52267
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.setBilleremail = function(value) {
|
|
52268
|
+
return jspb.Message.setProto3StringField(this, 4, value);
|
|
52269
|
+
};
|
|
52270
|
+
|
|
52271
|
+
|
|
52272
|
+
/**
|
|
52273
|
+
* optional string contactPhone = 5;
|
|
52274
|
+
* @return {string}
|
|
52275
|
+
*/
|
|
52276
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.getContactphone = function() {
|
|
52277
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
52278
|
+
};
|
|
52279
|
+
|
|
52280
|
+
|
|
52281
|
+
/**
|
|
52282
|
+
* @param {string} value
|
|
52283
|
+
* @return {!proto.sniipbillerapi.BillerBusinessDetailsResponse} returns this
|
|
52284
|
+
*/
|
|
52285
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.setContactphone = function(value) {
|
|
52286
|
+
return jspb.Message.setProto3StringField(this, 5, value);
|
|
52287
|
+
};
|
|
52288
|
+
|
|
52289
|
+
|
|
52290
|
+
/**
|
|
52291
|
+
* optional int32 industryCode = 6;
|
|
52292
|
+
* @return {number}
|
|
52293
|
+
*/
|
|
52294
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.getIndustrycode = function() {
|
|
52295
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 6, 0));
|
|
52296
|
+
};
|
|
52297
|
+
|
|
52298
|
+
|
|
52299
|
+
/**
|
|
52300
|
+
* @param {number} value
|
|
52301
|
+
* @return {!proto.sniipbillerapi.BillerBusinessDetailsResponse} returns this
|
|
52302
|
+
*/
|
|
52303
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.setIndustrycode = function(value) {
|
|
52304
|
+
return jspb.Message.setProto3IntField(this, 6, value);
|
|
52305
|
+
};
|
|
52306
|
+
|
|
52307
|
+
|
|
52308
|
+
/**
|
|
52309
|
+
* optional string industrySectorName = 7;
|
|
52310
|
+
* @return {string}
|
|
52311
|
+
*/
|
|
52312
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.getIndustrysectorname = function() {
|
|
52313
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
52314
|
+
};
|
|
52315
|
+
|
|
52316
|
+
|
|
52317
|
+
/**
|
|
52318
|
+
* @param {string} value
|
|
52319
|
+
* @return {!proto.sniipbillerapi.BillerBusinessDetailsResponse} returns this
|
|
52320
|
+
*/
|
|
52321
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.setIndustrysectorname = function(value) {
|
|
52322
|
+
return jspb.Message.setProto3StringField(this, 7, value);
|
|
52323
|
+
};
|
|
52324
|
+
|
|
52325
|
+
|
|
52326
|
+
/**
|
|
52327
|
+
* optional string industryComment = 8;
|
|
52328
|
+
* @return {string}
|
|
52329
|
+
*/
|
|
52330
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.getIndustrycomment = function() {
|
|
52331
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
52332
|
+
};
|
|
52333
|
+
|
|
52334
|
+
|
|
52335
|
+
/**
|
|
52336
|
+
* @param {string} value
|
|
52337
|
+
* @return {!proto.sniipbillerapi.BillerBusinessDetailsResponse} returns this
|
|
52338
|
+
*/
|
|
52339
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.setIndustrycomment = function(value) {
|
|
52340
|
+
return jspb.Message.setProto3StringField(this, 8, value);
|
|
52341
|
+
};
|
|
52342
|
+
|
|
52343
|
+
|
|
52344
|
+
/**
|
|
52345
|
+
* optional string timezone = 9;
|
|
52346
|
+
* @return {string}
|
|
52347
|
+
*/
|
|
52348
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.getTimezone = function() {
|
|
52349
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
52350
|
+
};
|
|
52351
|
+
|
|
52352
|
+
|
|
52353
|
+
/**
|
|
52354
|
+
* @param {string} value
|
|
52355
|
+
* @return {!proto.sniipbillerapi.BillerBusinessDetailsResponse} returns this
|
|
52356
|
+
*/
|
|
52357
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.setTimezone = function(value) {
|
|
52358
|
+
return jspb.Message.setProto3StringField(this, 9, value);
|
|
52359
|
+
};
|
|
52360
|
+
|
|
52361
|
+
|
|
52362
|
+
/**
|
|
52363
|
+
* optional string logo = 10;
|
|
52364
|
+
* @return {string}
|
|
52365
|
+
*/
|
|
52366
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.getLogo = function() {
|
|
52367
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 10, ""));
|
|
52368
|
+
};
|
|
52369
|
+
|
|
52370
|
+
|
|
52371
|
+
/**
|
|
52372
|
+
* @param {string} value
|
|
52373
|
+
* @return {!proto.sniipbillerapi.BillerBusinessDetailsResponse} returns this
|
|
52374
|
+
*/
|
|
52375
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.setLogo = function(value) {
|
|
52376
|
+
return jspb.Message.setProto3StringField(this, 10, value);
|
|
52377
|
+
};
|
|
52378
|
+
|
|
52379
|
+
|
|
52380
|
+
/**
|
|
52381
|
+
* optional string internalDescription = 11;
|
|
52382
|
+
* @return {string}
|
|
52383
|
+
*/
|
|
52384
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.getInternaldescription = function() {
|
|
52385
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
|
|
52386
|
+
};
|
|
52387
|
+
|
|
52388
|
+
|
|
52389
|
+
/**
|
|
52390
|
+
* @param {string} value
|
|
52391
|
+
* @return {!proto.sniipbillerapi.BillerBusinessDetailsResponse} returns this
|
|
52392
|
+
*/
|
|
52393
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.setInternaldescription = function(value) {
|
|
52394
|
+
return jspb.Message.setProto3StringField(this, 11, value);
|
|
52395
|
+
};
|
|
52396
|
+
|
|
52397
|
+
|
|
52398
|
+
|
|
52399
|
+
|
|
52400
|
+
|
|
52401
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
52402
|
+
/**
|
|
52403
|
+
* Creates an object representation of this proto.
|
|
52404
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
|
52405
|
+
* Optional fields that are not set will be set to undefined.
|
|
52406
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
|
52407
|
+
* For the list of reserved names please see:
|
|
52408
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
|
52409
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
|
52410
|
+
* JSPB instance for transitional soy proto support:
|
|
52411
|
+
* http://goto/soy-param-migration
|
|
52412
|
+
* @return {!Object}
|
|
52413
|
+
*/
|
|
52414
|
+
proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest.prototype.toObject = function(opt_includeInstance) {
|
|
52415
|
+
return proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest.toObject(opt_includeInstance, this);
|
|
52416
|
+
};
|
|
52417
|
+
|
|
52418
|
+
|
|
52419
|
+
/**
|
|
52420
|
+
* Static version of the {@see toObject} method.
|
|
52421
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
|
52422
|
+
* the JSPB instance for transitional soy proto support:
|
|
52423
|
+
* http://goto/soy-param-migration
|
|
52424
|
+
* @param {!proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest} msg The msg instance to transform.
|
|
52425
|
+
* @return {!Object}
|
|
52426
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
52427
|
+
*/
|
|
52428
|
+
proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest.toObject = function(includeInstance, msg) {
|
|
52429
|
+
var f, obj = {
|
|
52430
|
+
billerid: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
52431
|
+
name: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
52432
|
+
abn: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
52433
|
+
billeremail: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
52434
|
+
contactphone: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
52435
|
+
industrycode: jspb.Message.getFieldWithDefault(msg, 6, 0),
|
|
52436
|
+
timezone: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
52437
|
+
internaldescription: jspb.Message.getFieldWithDefault(msg, 8, "")
|
|
52438
|
+
};
|
|
52439
|
+
|
|
52440
|
+
if (includeInstance) {
|
|
52441
|
+
obj.$jspbMessageInstance = msg;
|
|
52442
|
+
}
|
|
52443
|
+
return obj;
|
|
52444
|
+
};
|
|
52445
|
+
}
|
|
52446
|
+
|
|
52447
|
+
|
|
52448
|
+
/**
|
|
52449
|
+
* Deserializes binary data (in protobuf wire format).
|
|
52450
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
|
52451
|
+
* @return {!proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest}
|
|
52452
|
+
*/
|
|
52453
|
+
proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest.deserializeBinary = function(bytes) {
|
|
52454
|
+
var reader = new jspb.BinaryReader(bytes);
|
|
52455
|
+
var msg = new proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest;
|
|
52456
|
+
return proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest.deserializeBinaryFromReader(msg, reader);
|
|
52457
|
+
};
|
|
52458
|
+
|
|
52459
|
+
|
|
52460
|
+
/**
|
|
52461
|
+
* Deserializes binary data (in protobuf wire format) from the
|
|
52462
|
+
* given reader into the given message object.
|
|
52463
|
+
* @param {!proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest} msg The message object to deserialize into.
|
|
52464
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
|
52465
|
+
* @return {!proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest}
|
|
52466
|
+
*/
|
|
52467
|
+
proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest.deserializeBinaryFromReader = function(msg, reader) {
|
|
52468
|
+
while (reader.nextField()) {
|
|
52469
|
+
if (reader.isEndGroup()) {
|
|
52470
|
+
break;
|
|
52471
|
+
}
|
|
52472
|
+
var field = reader.getFieldNumber();
|
|
52473
|
+
switch (field) {
|
|
52474
|
+
case 1:
|
|
52475
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
52476
|
+
msg.setBillerid(value);
|
|
52477
|
+
break;
|
|
52478
|
+
case 2:
|
|
52479
|
+
var value = /** @type {string} */ (reader.readString());
|
|
52480
|
+
msg.setName(value);
|
|
52481
|
+
break;
|
|
52482
|
+
case 3:
|
|
52483
|
+
var value = /** @type {string} */ (reader.readString());
|
|
52484
|
+
msg.setAbn(value);
|
|
52485
|
+
break;
|
|
52486
|
+
case 4:
|
|
52487
|
+
var value = /** @type {string} */ (reader.readString());
|
|
52488
|
+
msg.setBilleremail(value);
|
|
52489
|
+
break;
|
|
52490
|
+
case 5:
|
|
52491
|
+
var value = /** @type {string} */ (reader.readString());
|
|
52492
|
+
msg.setContactphone(value);
|
|
52493
|
+
break;
|
|
52494
|
+
case 6:
|
|
52495
|
+
var value = /** @type {number} */ (reader.readInt32());
|
|
52496
|
+
msg.setIndustrycode(value);
|
|
52497
|
+
break;
|
|
52498
|
+
case 7:
|
|
52499
|
+
var value = /** @type {string} */ (reader.readString());
|
|
52500
|
+
msg.setTimezone(value);
|
|
52501
|
+
break;
|
|
52502
|
+
case 8:
|
|
52503
|
+
var value = /** @type {string} */ (reader.readString());
|
|
52504
|
+
msg.setInternaldescription(value);
|
|
52505
|
+
break;
|
|
52506
|
+
default:
|
|
52507
|
+
reader.skipField();
|
|
52508
|
+
break;
|
|
52509
|
+
}
|
|
52510
|
+
}
|
|
52511
|
+
return msg;
|
|
52512
|
+
};
|
|
52513
|
+
|
|
52514
|
+
|
|
52515
|
+
/**
|
|
52516
|
+
* Serializes the message to binary data (in protobuf wire format).
|
|
52517
|
+
* @return {!Uint8Array}
|
|
52518
|
+
*/
|
|
52519
|
+
proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest.prototype.serializeBinary = function() {
|
|
52520
|
+
var writer = new jspb.BinaryWriter();
|
|
52521
|
+
proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest.serializeBinaryToWriter(this, writer);
|
|
52522
|
+
return writer.getResultBuffer();
|
|
52523
|
+
};
|
|
52524
|
+
|
|
52525
|
+
|
|
52526
|
+
/**
|
|
52527
|
+
* Serializes the given message to binary data (in protobuf wire
|
|
52528
|
+
* format), writing to the given BinaryWriter.
|
|
52529
|
+
* @param {!proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest} message
|
|
52530
|
+
* @param {!jspb.BinaryWriter} writer
|
|
52531
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
|
52532
|
+
*/
|
|
52533
|
+
proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest.serializeBinaryToWriter = function(message, writer) {
|
|
52534
|
+
var f = undefined;
|
|
52535
|
+
f = message.getBillerid();
|
|
52536
|
+
if (f !== 0) {
|
|
52537
|
+
writer.writeInt64(
|
|
52538
|
+
1,
|
|
52539
|
+
f
|
|
52540
|
+
);
|
|
52541
|
+
}
|
|
52542
|
+
f = message.getName();
|
|
52543
|
+
if (f.length > 0) {
|
|
52544
|
+
writer.writeString(
|
|
52545
|
+
2,
|
|
52546
|
+
f
|
|
52547
|
+
);
|
|
52548
|
+
}
|
|
52549
|
+
f = message.getAbn();
|
|
52550
|
+
if (f.length > 0) {
|
|
52551
|
+
writer.writeString(
|
|
52552
|
+
3,
|
|
52553
|
+
f
|
|
52554
|
+
);
|
|
52555
|
+
}
|
|
52556
|
+
f = message.getBilleremail();
|
|
52557
|
+
if (f.length > 0) {
|
|
52558
|
+
writer.writeString(
|
|
52559
|
+
4,
|
|
52560
|
+
f
|
|
52561
|
+
);
|
|
52562
|
+
}
|
|
52563
|
+
f = message.getContactphone();
|
|
52564
|
+
if (f.length > 0) {
|
|
52565
|
+
writer.writeString(
|
|
52566
|
+
5,
|
|
52567
|
+
f
|
|
52568
|
+
);
|
|
52569
|
+
}
|
|
52570
|
+
f = message.getIndustrycode();
|
|
52571
|
+
if (f !== 0) {
|
|
52572
|
+
writer.writeInt32(
|
|
52573
|
+
6,
|
|
52574
|
+
f
|
|
52575
|
+
);
|
|
52576
|
+
}
|
|
52577
|
+
f = message.getTimezone();
|
|
52578
|
+
if (f.length > 0) {
|
|
52579
|
+
writer.writeString(
|
|
52580
|
+
7,
|
|
52581
|
+
f
|
|
52582
|
+
);
|
|
52583
|
+
}
|
|
52584
|
+
f = message.getInternaldescription();
|
|
52585
|
+
if (f.length > 0) {
|
|
52586
|
+
writer.writeString(
|
|
52587
|
+
8,
|
|
52588
|
+
f
|
|
52589
|
+
);
|
|
52590
|
+
}
|
|
52591
|
+
};
|
|
52592
|
+
|
|
52593
|
+
|
|
52594
|
+
/**
|
|
52595
|
+
* optional int64 billerId = 1;
|
|
52596
|
+
* @return {number}
|
|
52597
|
+
*/
|
|
52598
|
+
proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest.prototype.getBillerid = function() {
|
|
52599
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
|
|
52600
|
+
};
|
|
52601
|
+
|
|
52602
|
+
|
|
52603
|
+
/**
|
|
52604
|
+
* @param {number} value
|
|
52605
|
+
* @return {!proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest} returns this
|
|
52606
|
+
*/
|
|
52607
|
+
proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest.prototype.setBillerid = function(value) {
|
|
52608
|
+
return jspb.Message.setProto3IntField(this, 1, value);
|
|
52609
|
+
};
|
|
52610
|
+
|
|
52611
|
+
|
|
52612
|
+
/**
|
|
52613
|
+
* optional string name = 2;
|
|
52614
|
+
* @return {string}
|
|
52615
|
+
*/
|
|
52616
|
+
proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest.prototype.getName = function() {
|
|
52617
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
52618
|
+
};
|
|
52619
|
+
|
|
52620
|
+
|
|
52621
|
+
/**
|
|
52622
|
+
* @param {string} value
|
|
52623
|
+
* @return {!proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest} returns this
|
|
52624
|
+
*/
|
|
52625
|
+
proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest.prototype.setName = function(value) {
|
|
52626
|
+
return jspb.Message.setProto3StringField(this, 2, value);
|
|
52627
|
+
};
|
|
52628
|
+
|
|
52629
|
+
|
|
52630
|
+
/**
|
|
52631
|
+
* optional string abn = 3;
|
|
52632
|
+
* @return {string}
|
|
52633
|
+
*/
|
|
52634
|
+
proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest.prototype.getAbn = function() {
|
|
52635
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
52636
|
+
};
|
|
52637
|
+
|
|
52638
|
+
|
|
52639
|
+
/**
|
|
52640
|
+
* @param {string} value
|
|
52641
|
+
* @return {!proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest} returns this
|
|
52642
|
+
*/
|
|
52643
|
+
proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest.prototype.setAbn = function(value) {
|
|
52644
|
+
return jspb.Message.setProto3StringField(this, 3, value);
|
|
52645
|
+
};
|
|
52646
|
+
|
|
52647
|
+
|
|
52648
|
+
/**
|
|
52649
|
+
* optional string billerEmail = 4;
|
|
52650
|
+
* @return {string}
|
|
52651
|
+
*/
|
|
52652
|
+
proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest.prototype.getBilleremail = function() {
|
|
52653
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
52654
|
+
};
|
|
52655
|
+
|
|
52656
|
+
|
|
52657
|
+
/**
|
|
52658
|
+
* @param {string} value
|
|
52659
|
+
* @return {!proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest} returns this
|
|
52660
|
+
*/
|
|
52661
|
+
proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest.prototype.setBilleremail = function(value) {
|
|
52662
|
+
return jspb.Message.setProto3StringField(this, 4, value);
|
|
52663
|
+
};
|
|
52664
|
+
|
|
52665
|
+
|
|
52666
|
+
/**
|
|
52667
|
+
* optional string contactPhone = 5;
|
|
52668
|
+
* @return {string}
|
|
52669
|
+
*/
|
|
52670
|
+
proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest.prototype.getContactphone = function() {
|
|
52671
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
52672
|
+
};
|
|
52673
|
+
|
|
52674
|
+
|
|
52675
|
+
/**
|
|
52676
|
+
* @param {string} value
|
|
52677
|
+
* @return {!proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest} returns this
|
|
52678
|
+
*/
|
|
52679
|
+
proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest.prototype.setContactphone = function(value) {
|
|
52680
|
+
return jspb.Message.setProto3StringField(this, 5, value);
|
|
52681
|
+
};
|
|
52682
|
+
|
|
52683
|
+
|
|
52684
|
+
/**
|
|
52685
|
+
* optional int32 industryCode = 6;
|
|
52686
|
+
* @return {number}
|
|
52687
|
+
*/
|
|
52688
|
+
proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest.prototype.getIndustrycode = function() {
|
|
52689
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 6, 0));
|
|
52690
|
+
};
|
|
52691
|
+
|
|
52692
|
+
|
|
52693
|
+
/**
|
|
52694
|
+
* @param {number} value
|
|
52695
|
+
* @return {!proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest} returns this
|
|
52696
|
+
*/
|
|
52697
|
+
proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest.prototype.setIndustrycode = function(value) {
|
|
52698
|
+
return jspb.Message.setProto3IntField(this, 6, value);
|
|
52699
|
+
};
|
|
52700
|
+
|
|
52701
|
+
|
|
52702
|
+
/**
|
|
52703
|
+
* optional string timezone = 7;
|
|
52704
|
+
* @return {string}
|
|
52705
|
+
*/
|
|
52706
|
+
proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest.prototype.getTimezone = function() {
|
|
52707
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
52708
|
+
};
|
|
52709
|
+
|
|
52710
|
+
|
|
52711
|
+
/**
|
|
52712
|
+
* @param {string} value
|
|
52713
|
+
* @return {!proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest} returns this
|
|
52714
|
+
*/
|
|
52715
|
+
proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest.prototype.setTimezone = function(value) {
|
|
52716
|
+
return jspb.Message.setProto3StringField(this, 7, value);
|
|
52717
|
+
};
|
|
52718
|
+
|
|
52719
|
+
|
|
52720
|
+
/**
|
|
52721
|
+
* optional string internalDescription = 8;
|
|
52722
|
+
* @return {string}
|
|
52723
|
+
*/
|
|
52724
|
+
proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest.prototype.getInternaldescription = function() {
|
|
52725
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
52726
|
+
};
|
|
52727
|
+
|
|
52728
|
+
|
|
52729
|
+
/**
|
|
52730
|
+
* @param {string} value
|
|
52731
|
+
* @return {!proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest} returns this
|
|
52732
|
+
*/
|
|
52733
|
+
proto.sniipbillerapi.UpdateBillerBusinessDetailsRequest.prototype.setInternaldescription = function(value) {
|
|
52734
|
+
return jspb.Message.setProto3StringField(this, 8, value);
|
|
52735
|
+
};
|
|
52736
|
+
|
|
52737
|
+
|
|
51751
52738
|
/**
|
|
51752
52739
|
* @enum {number}
|
|
51753
52740
|
*/
|