@sniipwebmaster/transaction-service-client-grpcweb 0.2.4351 → 0.2.4372
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 +218 -2
- package/package.json +1 -1
|
@@ -7311,7 +7311,11 @@ proto.sniiptransactionapi.PayBillRequest.toObject = function(includeInstance, ms
|
|
|
7311
7311
|
scheduledpaymentid: jspb.Message.getFieldWithDefault(msg, 13, 0),
|
|
7312
7312
|
uniquepaymentguid: jspb.Message.getFieldWithDefault(msg, 14, ""),
|
|
7313
7313
|
allowoverpayment: jspb.Message.getFieldWithDefault(msg, 15, false),
|
|
7314
|
-
billremainingamount: +jspb.Message.getFieldWithDefault(msg, 16, 0.0)
|
|
7314
|
+
billremainingamount: +jspb.Message.getFieldWithDefault(msg, 16, 0.0),
|
|
7315
|
+
browsername: jspb.Message.getFieldWithDefault(msg, 17, ""),
|
|
7316
|
+
browserversion: jspb.Message.getFieldWithDefault(msg, 18, ""),
|
|
7317
|
+
browserdevicemodel: jspb.Message.getFieldWithDefault(msg, 19, ""),
|
|
7318
|
+
browserplatform: jspb.Message.getFieldWithDefault(msg, 20, "")
|
|
7315
7319
|
};
|
|
7316
7320
|
|
|
7317
7321
|
if (includeInstance) {
|
|
@@ -7412,6 +7416,22 @@ proto.sniiptransactionapi.PayBillRequest.deserializeBinaryFromReader = function(
|
|
|
7412
7416
|
var value = /** @type {number} */ (reader.readDouble());
|
|
7413
7417
|
msg.setBillremainingamount(value);
|
|
7414
7418
|
break;
|
|
7419
|
+
case 17:
|
|
7420
|
+
var value = /** @type {string} */ (reader.readString());
|
|
7421
|
+
msg.setBrowsername(value);
|
|
7422
|
+
break;
|
|
7423
|
+
case 18:
|
|
7424
|
+
var value = /** @type {string} */ (reader.readString());
|
|
7425
|
+
msg.setBrowserversion(value);
|
|
7426
|
+
break;
|
|
7427
|
+
case 19:
|
|
7428
|
+
var value = /** @type {string} */ (reader.readString());
|
|
7429
|
+
msg.setBrowserdevicemodel(value);
|
|
7430
|
+
break;
|
|
7431
|
+
case 20:
|
|
7432
|
+
var value = /** @type {string} */ (reader.readString());
|
|
7433
|
+
msg.setBrowserplatform(value);
|
|
7434
|
+
break;
|
|
7415
7435
|
default:
|
|
7416
7436
|
reader.skipField();
|
|
7417
7437
|
break;
|
|
@@ -7553,6 +7573,34 @@ proto.sniiptransactionapi.PayBillRequest.serializeBinaryToWriter = function(mess
|
|
|
7553
7573
|
f
|
|
7554
7574
|
);
|
|
7555
7575
|
}
|
|
7576
|
+
f = message.getBrowsername();
|
|
7577
|
+
if (f.length > 0) {
|
|
7578
|
+
writer.writeString(
|
|
7579
|
+
17,
|
|
7580
|
+
f
|
|
7581
|
+
);
|
|
7582
|
+
}
|
|
7583
|
+
f = message.getBrowserversion();
|
|
7584
|
+
if (f.length > 0) {
|
|
7585
|
+
writer.writeString(
|
|
7586
|
+
18,
|
|
7587
|
+
f
|
|
7588
|
+
);
|
|
7589
|
+
}
|
|
7590
|
+
f = message.getBrowserdevicemodel();
|
|
7591
|
+
if (f.length > 0) {
|
|
7592
|
+
writer.writeString(
|
|
7593
|
+
19,
|
|
7594
|
+
f
|
|
7595
|
+
);
|
|
7596
|
+
}
|
|
7597
|
+
f = message.getBrowserplatform();
|
|
7598
|
+
if (f.length > 0) {
|
|
7599
|
+
writer.writeString(
|
|
7600
|
+
20,
|
|
7601
|
+
f
|
|
7602
|
+
);
|
|
7603
|
+
}
|
|
7556
7604
|
};
|
|
7557
7605
|
|
|
7558
7606
|
|
|
@@ -7798,6 +7846,66 @@ proto.sniiptransactionapi.PayBillRequest.prototype.setBillremainingamount = func
|
|
|
7798
7846
|
};
|
|
7799
7847
|
|
|
7800
7848
|
|
|
7849
|
+
/**
|
|
7850
|
+
* optional string browserName = 17;
|
|
7851
|
+
* @return {string}
|
|
7852
|
+
*/
|
|
7853
|
+
proto.sniiptransactionapi.PayBillRequest.prototype.getBrowsername = function() {
|
|
7854
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 17, ""));
|
|
7855
|
+
};
|
|
7856
|
+
|
|
7857
|
+
|
|
7858
|
+
/** @param {string} value */
|
|
7859
|
+
proto.sniiptransactionapi.PayBillRequest.prototype.setBrowsername = function(value) {
|
|
7860
|
+
jspb.Message.setProto3StringField(this, 17, value);
|
|
7861
|
+
};
|
|
7862
|
+
|
|
7863
|
+
|
|
7864
|
+
/**
|
|
7865
|
+
* optional string browserVersion = 18;
|
|
7866
|
+
* @return {string}
|
|
7867
|
+
*/
|
|
7868
|
+
proto.sniiptransactionapi.PayBillRequest.prototype.getBrowserversion = function() {
|
|
7869
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 18, ""));
|
|
7870
|
+
};
|
|
7871
|
+
|
|
7872
|
+
|
|
7873
|
+
/** @param {string} value */
|
|
7874
|
+
proto.sniiptransactionapi.PayBillRequest.prototype.setBrowserversion = function(value) {
|
|
7875
|
+
jspb.Message.setProto3StringField(this, 18, value);
|
|
7876
|
+
};
|
|
7877
|
+
|
|
7878
|
+
|
|
7879
|
+
/**
|
|
7880
|
+
* optional string browserDeviceModel = 19;
|
|
7881
|
+
* @return {string}
|
|
7882
|
+
*/
|
|
7883
|
+
proto.sniiptransactionapi.PayBillRequest.prototype.getBrowserdevicemodel = function() {
|
|
7884
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 19, ""));
|
|
7885
|
+
};
|
|
7886
|
+
|
|
7887
|
+
|
|
7888
|
+
/** @param {string} value */
|
|
7889
|
+
proto.sniiptransactionapi.PayBillRequest.prototype.setBrowserdevicemodel = function(value) {
|
|
7890
|
+
jspb.Message.setProto3StringField(this, 19, value);
|
|
7891
|
+
};
|
|
7892
|
+
|
|
7893
|
+
|
|
7894
|
+
/**
|
|
7895
|
+
* optional string browserPlatform = 20;
|
|
7896
|
+
* @return {string}
|
|
7897
|
+
*/
|
|
7898
|
+
proto.sniiptransactionapi.PayBillRequest.prototype.getBrowserplatform = function() {
|
|
7899
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 20, ""));
|
|
7900
|
+
};
|
|
7901
|
+
|
|
7902
|
+
|
|
7903
|
+
/** @param {string} value */
|
|
7904
|
+
proto.sniiptransactionapi.PayBillRequest.prototype.setBrowserplatform = function(value) {
|
|
7905
|
+
jspb.Message.setProto3StringField(this, 20, value);
|
|
7906
|
+
};
|
|
7907
|
+
|
|
7908
|
+
|
|
7801
7909
|
|
|
7802
7910
|
/**
|
|
7803
7911
|
* Generated by JsPbCodeGenerator.
|
|
@@ -7849,7 +7957,11 @@ proto.sniiptransactionapi.PayBillWithSavedDetailsRequest.toObject = function(inc
|
|
|
7849
7957
|
amount: +jspb.Message.getFieldWithDefault(msg, 2, 0.0),
|
|
7850
7958
|
paymentmethodid: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
7851
7959
|
itemuuid: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
7852
|
-
uniquepaymentguid: jspb.Message.getFieldWithDefault(msg, 5, "")
|
|
7960
|
+
uniquepaymentguid: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
7961
|
+
browsername: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
7962
|
+
browserversion: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
7963
|
+
browserdevicemodel: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
7964
|
+
browserplatform: jspb.Message.getFieldWithDefault(msg, 9, "")
|
|
7853
7965
|
};
|
|
7854
7966
|
|
|
7855
7967
|
if (includeInstance) {
|
|
@@ -7906,6 +8018,22 @@ proto.sniiptransactionapi.PayBillWithSavedDetailsRequest.deserializeBinaryFromRe
|
|
|
7906
8018
|
var value = /** @type {string} */ (reader.readString());
|
|
7907
8019
|
msg.setUniquepaymentguid(value);
|
|
7908
8020
|
break;
|
|
8021
|
+
case 6:
|
|
8022
|
+
var value = /** @type {string} */ (reader.readString());
|
|
8023
|
+
msg.setBrowsername(value);
|
|
8024
|
+
break;
|
|
8025
|
+
case 7:
|
|
8026
|
+
var value = /** @type {string} */ (reader.readString());
|
|
8027
|
+
msg.setBrowserversion(value);
|
|
8028
|
+
break;
|
|
8029
|
+
case 8:
|
|
8030
|
+
var value = /** @type {string} */ (reader.readString());
|
|
8031
|
+
msg.setBrowserdevicemodel(value);
|
|
8032
|
+
break;
|
|
8033
|
+
case 9:
|
|
8034
|
+
var value = /** @type {string} */ (reader.readString());
|
|
8035
|
+
msg.setBrowserplatform(value);
|
|
8036
|
+
break;
|
|
7909
8037
|
default:
|
|
7910
8038
|
reader.skipField();
|
|
7911
8039
|
break;
|
|
@@ -7970,6 +8098,34 @@ proto.sniiptransactionapi.PayBillWithSavedDetailsRequest.serializeBinaryToWriter
|
|
|
7970
8098
|
f
|
|
7971
8099
|
);
|
|
7972
8100
|
}
|
|
8101
|
+
f = message.getBrowsername();
|
|
8102
|
+
if (f.length > 0) {
|
|
8103
|
+
writer.writeString(
|
|
8104
|
+
6,
|
|
8105
|
+
f
|
|
8106
|
+
);
|
|
8107
|
+
}
|
|
8108
|
+
f = message.getBrowserversion();
|
|
8109
|
+
if (f.length > 0) {
|
|
8110
|
+
writer.writeString(
|
|
8111
|
+
7,
|
|
8112
|
+
f
|
|
8113
|
+
);
|
|
8114
|
+
}
|
|
8115
|
+
f = message.getBrowserdevicemodel();
|
|
8116
|
+
if (f.length > 0) {
|
|
8117
|
+
writer.writeString(
|
|
8118
|
+
8,
|
|
8119
|
+
f
|
|
8120
|
+
);
|
|
8121
|
+
}
|
|
8122
|
+
f = message.getBrowserplatform();
|
|
8123
|
+
if (f.length > 0) {
|
|
8124
|
+
writer.writeString(
|
|
8125
|
+
9,
|
|
8126
|
+
f
|
|
8127
|
+
);
|
|
8128
|
+
}
|
|
7973
8129
|
};
|
|
7974
8130
|
|
|
7975
8131
|
|
|
@@ -8048,6 +8204,66 @@ proto.sniiptransactionapi.PayBillWithSavedDetailsRequest.prototype.setUniquepaym
|
|
|
8048
8204
|
};
|
|
8049
8205
|
|
|
8050
8206
|
|
|
8207
|
+
/**
|
|
8208
|
+
* optional string browserName = 6;
|
|
8209
|
+
* @return {string}
|
|
8210
|
+
*/
|
|
8211
|
+
proto.sniiptransactionapi.PayBillWithSavedDetailsRequest.prototype.getBrowsername = function() {
|
|
8212
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
8213
|
+
};
|
|
8214
|
+
|
|
8215
|
+
|
|
8216
|
+
/** @param {string} value */
|
|
8217
|
+
proto.sniiptransactionapi.PayBillWithSavedDetailsRequest.prototype.setBrowsername = function(value) {
|
|
8218
|
+
jspb.Message.setProto3StringField(this, 6, value);
|
|
8219
|
+
};
|
|
8220
|
+
|
|
8221
|
+
|
|
8222
|
+
/**
|
|
8223
|
+
* optional string browserVersion = 7;
|
|
8224
|
+
* @return {string}
|
|
8225
|
+
*/
|
|
8226
|
+
proto.sniiptransactionapi.PayBillWithSavedDetailsRequest.prototype.getBrowserversion = function() {
|
|
8227
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
8228
|
+
};
|
|
8229
|
+
|
|
8230
|
+
|
|
8231
|
+
/** @param {string} value */
|
|
8232
|
+
proto.sniiptransactionapi.PayBillWithSavedDetailsRequest.prototype.setBrowserversion = function(value) {
|
|
8233
|
+
jspb.Message.setProto3StringField(this, 7, value);
|
|
8234
|
+
};
|
|
8235
|
+
|
|
8236
|
+
|
|
8237
|
+
/**
|
|
8238
|
+
* optional string browserDeviceModel = 8;
|
|
8239
|
+
* @return {string}
|
|
8240
|
+
*/
|
|
8241
|
+
proto.sniiptransactionapi.PayBillWithSavedDetailsRequest.prototype.getBrowserdevicemodel = function() {
|
|
8242
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
8243
|
+
};
|
|
8244
|
+
|
|
8245
|
+
|
|
8246
|
+
/** @param {string} value */
|
|
8247
|
+
proto.sniiptransactionapi.PayBillWithSavedDetailsRequest.prototype.setBrowserdevicemodel = function(value) {
|
|
8248
|
+
jspb.Message.setProto3StringField(this, 8, value);
|
|
8249
|
+
};
|
|
8250
|
+
|
|
8251
|
+
|
|
8252
|
+
/**
|
|
8253
|
+
* optional string browserPlatform = 9;
|
|
8254
|
+
* @return {string}
|
|
8255
|
+
*/
|
|
8256
|
+
proto.sniiptransactionapi.PayBillWithSavedDetailsRequest.prototype.getBrowserplatform = function() {
|
|
8257
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
8258
|
+
};
|
|
8259
|
+
|
|
8260
|
+
|
|
8261
|
+
/** @param {string} value */
|
|
8262
|
+
proto.sniiptransactionapi.PayBillWithSavedDetailsRequest.prototype.setBrowserplatform = function(value) {
|
|
8263
|
+
jspb.Message.setProto3StringField(this, 9, value);
|
|
8264
|
+
};
|
|
8265
|
+
|
|
8266
|
+
|
|
8051
8267
|
|
|
8052
8268
|
/**
|
|
8053
8269
|
* Generated by JsPbCodeGenerator.
|