@sniipwebmaster/biller-service-client-grpcweb 26.4.9521 → 26.4.9541
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
|
@@ -53843,7 +53843,8 @@ proto.sniipbillerapi.SniipToBpayMigrationConfig.toObject = function(includeInsta
|
|
|
53843
53843
|
isDisabled: jspb.Message.getBooleanFieldWithDefault(msg, 8, false),
|
|
53844
53844
|
createdAt: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
53845
53845
|
updatedAt: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
53846
|
-
bpayBillerConfigId: jspb.Message.getFieldWithDefault(msg, 11, 0)
|
|
53846
|
+
bpayBillerConfigId: jspb.Message.getFieldWithDefault(msg, 11, 0),
|
|
53847
|
+
sniipBillerConfigId: jspb.Message.getFieldWithDefault(msg, 12, 0)
|
|
53847
53848
|
};
|
|
53848
53849
|
|
|
53849
53850
|
if (includeInstance) {
|
|
@@ -53924,6 +53925,10 @@ proto.sniipbillerapi.SniipToBpayMigrationConfig.deserializeBinaryFromReader = fu
|
|
|
53924
53925
|
var value = /** @type {number} */ (reader.readInt64());
|
|
53925
53926
|
msg.setBpayBillerConfigId(value);
|
|
53926
53927
|
break;
|
|
53928
|
+
case 12:
|
|
53929
|
+
var value = /** @type {number} */ (reader.readInt64());
|
|
53930
|
+
msg.setSniipBillerConfigId(value);
|
|
53931
|
+
break;
|
|
53927
53932
|
default:
|
|
53928
53933
|
reader.skipField();
|
|
53929
53934
|
break;
|
|
@@ -54030,6 +54035,13 @@ proto.sniipbillerapi.SniipToBpayMigrationConfig.serializeBinaryToWriter = functi
|
|
|
54030
54035
|
f
|
|
54031
54036
|
);
|
|
54032
54037
|
}
|
|
54038
|
+
f = message.getSniipBillerConfigId();
|
|
54039
|
+
if (f !== 0) {
|
|
54040
|
+
writer.writeInt64(
|
|
54041
|
+
12,
|
|
54042
|
+
f
|
|
54043
|
+
);
|
|
54044
|
+
}
|
|
54033
54045
|
};
|
|
54034
54046
|
|
|
54035
54047
|
|
|
@@ -54231,6 +54243,24 @@ proto.sniipbillerapi.SniipToBpayMigrationConfig.prototype.setBpayBillerConfigId
|
|
|
54231
54243
|
};
|
|
54232
54244
|
|
|
54233
54245
|
|
|
54246
|
+
/**
|
|
54247
|
+
* optional int64 sniip_biller_config_id = 12;
|
|
54248
|
+
* @return {number}
|
|
54249
|
+
*/
|
|
54250
|
+
proto.sniipbillerapi.SniipToBpayMigrationConfig.prototype.getSniipBillerConfigId = function() {
|
|
54251
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 12, 0));
|
|
54252
|
+
};
|
|
54253
|
+
|
|
54254
|
+
|
|
54255
|
+
/**
|
|
54256
|
+
* @param {number} value
|
|
54257
|
+
* @return {!proto.sniipbillerapi.SniipToBpayMigrationConfig} returns this
|
|
54258
|
+
*/
|
|
54259
|
+
proto.sniipbillerapi.SniipToBpayMigrationConfig.prototype.setSniipBillerConfigId = function(value) {
|
|
54260
|
+
return jspb.Message.setProto3IntField(this, 12, value);
|
|
54261
|
+
};
|
|
54262
|
+
|
|
54263
|
+
|
|
54234
54264
|
|
|
54235
54265
|
|
|
54236
54266
|
|