@sniipwebmaster/biller-service-client-grpcweb-ts 25.6.8613 → 25.6.8630
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.
|
@@ -1164,6 +1164,9 @@ export class BillerConfig extends jspb.Message {
|
|
|
1164
1164
|
getBankaccountstatus(): string;
|
|
1165
1165
|
setBankaccountstatus(value: string): BillerConfig;
|
|
1166
1166
|
|
|
1167
|
+
getQrcodeidentifier(): string;
|
|
1168
|
+
setQrcodeidentifier(value: string): BillerConfig;
|
|
1169
|
+
|
|
1167
1170
|
serializeBinary(): Uint8Array;
|
|
1168
1171
|
toObject(includeInstance?: boolean): BillerConfig.AsObject;
|
|
1169
1172
|
static toObject(includeInstance: boolean, msg: BillerConfig): BillerConfig.AsObject;
|
|
@@ -1203,6 +1206,7 @@ export namespace BillerConfig {
|
|
|
1203
1206
|
createdbybillconfigid: number,
|
|
1204
1207
|
bankaccountnameoverride: string,
|
|
1205
1208
|
bankaccountstatus: string,
|
|
1209
|
+
qrcodeidentifier: string,
|
|
1206
1210
|
}
|
|
1207
1211
|
}
|
|
1208
1212
|
|
|
@@ -1296,6 +1300,9 @@ export class BillerConfigDetails extends jspb.Message {
|
|
|
1296
1300
|
getBillerconfigid(): number;
|
|
1297
1301
|
setBillerconfigid(value: number): BillerConfigDetails;
|
|
1298
1302
|
|
|
1303
|
+
getQrcodeidentifier(): string;
|
|
1304
|
+
setQrcodeidentifier(value: string): BillerConfigDetails;
|
|
1305
|
+
|
|
1299
1306
|
serializeBinary(): Uint8Array;
|
|
1300
1307
|
toObject(includeInstance?: boolean): BillerConfigDetails.AsObject;
|
|
1301
1308
|
static toObject(includeInstance: boolean, msg: BillerConfigDetails): BillerConfigDetails.AsObject;
|
|
@@ -1323,6 +1330,7 @@ export namespace BillerConfigDetails {
|
|
|
1323
1330
|
requiresreview: boolean,
|
|
1324
1331
|
trimreferencenumber: boolean,
|
|
1325
1332
|
billerconfigid: number,
|
|
1333
|
+
qrcodeidentifier: string,
|
|
1326
1334
|
}
|
|
1327
1335
|
}
|
|
1328
1336
|
|
|
@@ -12348,7 +12348,8 @@ proto.sniipbillerapi.BillerConfig.toObject = function(includeInstance, msg) {
|
|
|
12348
12348
|
businesspayment: jspb.Message.getBooleanFieldWithDefault(msg, 28, false),
|
|
12349
12349
|
createdbybillconfigid: jspb.Message.getFieldWithDefault(msg, 29, 0),
|
|
12350
12350
|
bankaccountnameoverride: jspb.Message.getFieldWithDefault(msg, 30, ""),
|
|
12351
|
-
bankaccountstatus: jspb.Message.getFieldWithDefault(msg, 31, "")
|
|
12351
|
+
bankaccountstatus: jspb.Message.getFieldWithDefault(msg, 31, ""),
|
|
12352
|
+
qrcodeidentifier: jspb.Message.getFieldWithDefault(msg, 32, "")
|
|
12352
12353
|
};
|
|
12353
12354
|
|
|
12354
12355
|
if (includeInstance) {
|
|
@@ -12505,6 +12506,10 @@ proto.sniipbillerapi.BillerConfig.deserializeBinaryFromReader = function(msg, re
|
|
|
12505
12506
|
var value = /** @type {string} */ (reader.readString());
|
|
12506
12507
|
msg.setBankaccountstatus(value);
|
|
12507
12508
|
break;
|
|
12509
|
+
case 32:
|
|
12510
|
+
var value = /** @type {string} */ (reader.readString());
|
|
12511
|
+
msg.setQrcodeidentifier(value);
|
|
12512
|
+
break;
|
|
12508
12513
|
default:
|
|
12509
12514
|
reader.skipField();
|
|
12510
12515
|
break;
|
|
@@ -12741,6 +12746,13 @@ proto.sniipbillerapi.BillerConfig.serializeBinaryToWriter = function(message, wr
|
|
|
12741
12746
|
f
|
|
12742
12747
|
);
|
|
12743
12748
|
}
|
|
12749
|
+
f = message.getQrcodeidentifier();
|
|
12750
|
+
if (f.length > 0) {
|
|
12751
|
+
writer.writeString(
|
|
12752
|
+
32,
|
|
12753
|
+
f
|
|
12754
|
+
);
|
|
12755
|
+
}
|
|
12744
12756
|
};
|
|
12745
12757
|
|
|
12746
12758
|
|
|
@@ -13343,6 +13355,24 @@ proto.sniipbillerapi.BillerConfig.prototype.setBankaccountstatus = function(valu
|
|
|
13343
13355
|
};
|
|
13344
13356
|
|
|
13345
13357
|
|
|
13358
|
+
/**
|
|
13359
|
+
* optional string qrCodeIdentifier = 32;
|
|
13360
|
+
* @return {string}
|
|
13361
|
+
*/
|
|
13362
|
+
proto.sniipbillerapi.BillerConfig.prototype.getQrcodeidentifier = function() {
|
|
13363
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 32, ""));
|
|
13364
|
+
};
|
|
13365
|
+
|
|
13366
|
+
|
|
13367
|
+
/**
|
|
13368
|
+
* @param {string} value
|
|
13369
|
+
* @return {!proto.sniipbillerapi.BillerConfig} returns this
|
|
13370
|
+
*/
|
|
13371
|
+
proto.sniipbillerapi.BillerConfig.prototype.setQrcodeidentifier = function(value) {
|
|
13372
|
+
return jspb.Message.setProto3StringField(this, 32, value);
|
|
13373
|
+
};
|
|
13374
|
+
|
|
13375
|
+
|
|
13346
13376
|
|
|
13347
13377
|
|
|
13348
13378
|
|
|
@@ -13671,7 +13701,8 @@ proto.sniipbillerapi.BillerConfigDetails.toObject = function(includeInstance, ms
|
|
|
13671
13701
|
paymentprocessor: jspb.Message.getFieldWithDefault(msg, 14, ""),
|
|
13672
13702
|
requiresreview: jspb.Message.getBooleanFieldWithDefault(msg, 15, false),
|
|
13673
13703
|
trimreferencenumber: jspb.Message.getBooleanFieldWithDefault(msg, 16, false),
|
|
13674
|
-
billerconfigid: jspb.Message.getFieldWithDefault(msg, 17, 0)
|
|
13704
|
+
billerconfigid: jspb.Message.getFieldWithDefault(msg, 17, 0),
|
|
13705
|
+
qrcodeidentifier: jspb.Message.getFieldWithDefault(msg, 18, "")
|
|
13675
13706
|
};
|
|
13676
13707
|
|
|
13677
13708
|
if (includeInstance) {
|
|
@@ -13776,6 +13807,10 @@ proto.sniipbillerapi.BillerConfigDetails.deserializeBinaryFromReader = function(
|
|
|
13776
13807
|
var value = /** @type {number} */ (reader.readInt64());
|
|
13777
13808
|
msg.setBillerconfigid(value);
|
|
13778
13809
|
break;
|
|
13810
|
+
case 18:
|
|
13811
|
+
var value = /** @type {string} */ (reader.readString());
|
|
13812
|
+
msg.setQrcodeidentifier(value);
|
|
13813
|
+
break;
|
|
13779
13814
|
default:
|
|
13780
13815
|
reader.skipField();
|
|
13781
13816
|
break;
|
|
@@ -13924,6 +13959,13 @@ proto.sniipbillerapi.BillerConfigDetails.serializeBinaryToWriter = function(mess
|
|
|
13924
13959
|
f
|
|
13925
13960
|
);
|
|
13926
13961
|
}
|
|
13962
|
+
f = message.getQrcodeidentifier();
|
|
13963
|
+
if (f.length > 0) {
|
|
13964
|
+
writer.writeString(
|
|
13965
|
+
18,
|
|
13966
|
+
f
|
|
13967
|
+
);
|
|
13968
|
+
}
|
|
13927
13969
|
};
|
|
13928
13970
|
|
|
13929
13971
|
|
|
@@ -14233,6 +14275,24 @@ proto.sniipbillerapi.BillerConfigDetails.prototype.setBillerconfigid = function(
|
|
|
14233
14275
|
};
|
|
14234
14276
|
|
|
14235
14277
|
|
|
14278
|
+
/**
|
|
14279
|
+
* optional string qrCodeIdentifier = 18;
|
|
14280
|
+
* @return {string}
|
|
14281
|
+
*/
|
|
14282
|
+
proto.sniipbillerapi.BillerConfigDetails.prototype.getQrcodeidentifier = function() {
|
|
14283
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 18, ""));
|
|
14284
|
+
};
|
|
14285
|
+
|
|
14286
|
+
|
|
14287
|
+
/**
|
|
14288
|
+
* @param {string} value
|
|
14289
|
+
* @return {!proto.sniipbillerapi.BillerConfigDetails} returns this
|
|
14290
|
+
*/
|
|
14291
|
+
proto.sniipbillerapi.BillerConfigDetails.prototype.setQrcodeidentifier = function(value) {
|
|
14292
|
+
return jspb.Message.setProto3StringField(this, 18, value);
|
|
14293
|
+
};
|
|
14294
|
+
|
|
14295
|
+
|
|
14236
14296
|
|
|
14237
14297
|
|
|
14238
14298
|
|