@sniipwebmaster/transaction-service-client-grpcweb 0.2.4211 → 0.2.4224
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 +30 -1
- package/package.json +1 -1
|
@@ -7307,7 +7307,8 @@ proto.sniiptransactionapi.PayBillRequest.toObject = function(includeInstance, ms
|
|
|
7307
7307
|
model: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
7308
7308
|
osversion: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
7309
7309
|
scheduledpaymentid: jspb.Message.getFieldWithDefault(msg, 13, 0),
|
|
7310
|
-
uniquepaymentguid: jspb.Message.getFieldWithDefault(msg, 14, "")
|
|
7310
|
+
uniquepaymentguid: jspb.Message.getFieldWithDefault(msg, 14, ""),
|
|
7311
|
+
allowoverpayment: jspb.Message.getFieldWithDefault(msg, 15, false)
|
|
7311
7312
|
};
|
|
7312
7313
|
|
|
7313
7314
|
if (includeInstance) {
|
|
@@ -7400,6 +7401,10 @@ proto.sniiptransactionapi.PayBillRequest.deserializeBinaryFromReader = function(
|
|
|
7400
7401
|
var value = /** @type {string} */ (reader.readString());
|
|
7401
7402
|
msg.setUniquepaymentguid(value);
|
|
7402
7403
|
break;
|
|
7404
|
+
case 15:
|
|
7405
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
7406
|
+
msg.setAllowoverpayment(value);
|
|
7407
|
+
break;
|
|
7403
7408
|
default:
|
|
7404
7409
|
reader.skipField();
|
|
7405
7410
|
break;
|
|
@@ -7527,6 +7532,13 @@ proto.sniiptransactionapi.PayBillRequest.serializeBinaryToWriter = function(mess
|
|
|
7527
7532
|
f
|
|
7528
7533
|
);
|
|
7529
7534
|
}
|
|
7535
|
+
f = message.getAllowoverpayment();
|
|
7536
|
+
if (f) {
|
|
7537
|
+
writer.writeBool(
|
|
7538
|
+
15,
|
|
7539
|
+
f
|
|
7540
|
+
);
|
|
7541
|
+
}
|
|
7530
7542
|
};
|
|
7531
7543
|
|
|
7532
7544
|
|
|
@@ -7740,6 +7752,23 @@ proto.sniiptransactionapi.PayBillRequest.prototype.setUniquepaymentguid = functi
|
|
|
7740
7752
|
};
|
|
7741
7753
|
|
|
7742
7754
|
|
|
7755
|
+
/**
|
|
7756
|
+
* optional bool allowOverpayment = 15;
|
|
7757
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
7758
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
7759
|
+
* @return {boolean}
|
|
7760
|
+
*/
|
|
7761
|
+
proto.sniiptransactionapi.PayBillRequest.prototype.getAllowoverpayment = function() {
|
|
7762
|
+
return /** @type {boolean} */ (jspb.Message.getFieldWithDefault(this, 15, false));
|
|
7763
|
+
};
|
|
7764
|
+
|
|
7765
|
+
|
|
7766
|
+
/** @param {boolean} value */
|
|
7767
|
+
proto.sniiptransactionapi.PayBillRequest.prototype.setAllowoverpayment = function(value) {
|
|
7768
|
+
jspb.Message.setProto3BooleanField(this, 15, value);
|
|
7769
|
+
};
|
|
7770
|
+
|
|
7771
|
+
|
|
7743
7772
|
|
|
7744
7773
|
/**
|
|
7745
7774
|
* Generated by JsPbCodeGenerator.
|