@sniipwebmaster/biller-service-client-grpcweb 26.3.9464 → 26.3.9486
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dependancies/service_pb.js +31 -1
- package/package.json +1 -1
|
@@ -52934,7 +52934,8 @@ proto.sniipbillerapi.BillerBusinessDetailsResponse.toObject = function(includeIn
|
|
|
52934
52934
|
industrycomment: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
52935
52935
|
timezone: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
52936
52936
|
logo: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
52937
|
-
internaldescription: jspb.Message.getFieldWithDefault(msg, 11, "")
|
|
52937
|
+
internaldescription: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
52938
|
+
ismasterbiller: jspb.Message.getBooleanFieldWithDefault(msg, 12, false)
|
|
52938
52939
|
};
|
|
52939
52940
|
|
|
52940
52941
|
if (includeInstance) {
|
|
@@ -53016,6 +53017,10 @@ proto.sniipbillerapi.BillerBusinessDetailsResponse.deserializeBinaryFromReader =
|
|
|
53016
53017
|
var value = /** @type {string} */ (reader.readString());
|
|
53017
53018
|
msg.setInternaldescription(value);
|
|
53018
53019
|
break;
|
|
53020
|
+
case 12:
|
|
53021
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
53022
|
+
msg.setIsmasterbiller(value);
|
|
53023
|
+
break;
|
|
53019
53024
|
default:
|
|
53020
53025
|
reader.skipField();
|
|
53021
53026
|
break;
|
|
@@ -53123,6 +53128,13 @@ proto.sniipbillerapi.BillerBusinessDetailsResponse.serializeBinaryToWriter = fun
|
|
|
53123
53128
|
f
|
|
53124
53129
|
);
|
|
53125
53130
|
}
|
|
53131
|
+
f = message.getIsmasterbiller();
|
|
53132
|
+
if (f) {
|
|
53133
|
+
writer.writeBool(
|
|
53134
|
+
12,
|
|
53135
|
+
f
|
|
53136
|
+
);
|
|
53137
|
+
}
|
|
53126
53138
|
};
|
|
53127
53139
|
|
|
53128
53140
|
|
|
@@ -53343,6 +53355,24 @@ proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.setInternaldescript
|
|
|
53343
53355
|
};
|
|
53344
53356
|
|
|
53345
53357
|
|
|
53358
|
+
/**
|
|
53359
|
+
* optional bool isMasterBiller = 12;
|
|
53360
|
+
* @return {boolean}
|
|
53361
|
+
*/
|
|
53362
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.getIsmasterbiller = function() {
|
|
53363
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 12, false));
|
|
53364
|
+
};
|
|
53365
|
+
|
|
53366
|
+
|
|
53367
|
+
/**
|
|
53368
|
+
* @param {boolean} value
|
|
53369
|
+
* @return {!proto.sniipbillerapi.BillerBusinessDetailsResponse} returns this
|
|
53370
|
+
*/
|
|
53371
|
+
proto.sniipbillerapi.BillerBusinessDetailsResponse.prototype.setIsmasterbiller = function(value) {
|
|
53372
|
+
return jspb.Message.setProto3BooleanField(this, 12, value);
|
|
53373
|
+
};
|
|
53374
|
+
|
|
53375
|
+
|
|
53346
53376
|
|
|
53347
53377
|
|
|
53348
53378
|
|