@sniipwebmaster/transaction-service-client-grpcweb 0.2.4372 → 0.2.4382
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
|
@@ -10459,7 +10459,8 @@ proto.sniiptransactionapi.PostPayBillResponse.toObject = function(includeInstanc
|
|
|
10459
10459
|
responsecode: (f = msg.getResponsecode()) && proto.sniiptransactionapi.ResponseCode.toObject(includeInstance, f),
|
|
10460
10460
|
transactiondetails: (f = msg.getTransactiondetails()) && proto.sniiptransactionapi.TransactionDetails.toObject(includeInstance, f),
|
|
10461
10461
|
subscription: (f = msg.getSubscription()) && proto.sniiptransactionapi.MbillingSubscription.toObject(includeInstance, f),
|
|
10462
|
-
didarchive: jspb.Message.getFieldWithDefault(msg, 4, false)
|
|
10462
|
+
didarchive: jspb.Message.getFieldWithDefault(msg, 4, false),
|
|
10463
|
+
showemailverificationmsg: jspb.Message.getFieldWithDefault(msg, 5, false)
|
|
10463
10464
|
};
|
|
10464
10465
|
|
|
10465
10466
|
if (includeInstance) {
|
|
@@ -10515,6 +10516,10 @@ proto.sniiptransactionapi.PostPayBillResponse.deserializeBinaryFromReader = func
|
|
|
10515
10516
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
10516
10517
|
msg.setDidarchive(value);
|
|
10517
10518
|
break;
|
|
10519
|
+
case 5:
|
|
10520
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
10521
|
+
msg.setShowemailverificationmsg(value);
|
|
10522
|
+
break;
|
|
10518
10523
|
default:
|
|
10519
10524
|
reader.skipField();
|
|
10520
10525
|
break;
|
|
@@ -10575,6 +10580,13 @@ proto.sniiptransactionapi.PostPayBillResponse.serializeBinaryToWriter = function
|
|
|
10575
10580
|
f
|
|
10576
10581
|
);
|
|
10577
10582
|
}
|
|
10583
|
+
f = message.getShowemailverificationmsg();
|
|
10584
|
+
if (f) {
|
|
10585
|
+
writer.writeBool(
|
|
10586
|
+
5,
|
|
10587
|
+
f
|
|
10588
|
+
);
|
|
10589
|
+
}
|
|
10578
10590
|
};
|
|
10579
10591
|
|
|
10580
10592
|
|
|
@@ -10685,6 +10697,23 @@ proto.sniiptransactionapi.PostPayBillResponse.prototype.setDidarchive = function
|
|
|
10685
10697
|
};
|
|
10686
10698
|
|
|
10687
10699
|
|
|
10700
|
+
/**
|
|
10701
|
+
* optional bool showEmailVerificationMsg = 5;
|
|
10702
|
+
* Note that Boolean fields may be set to 0/1 when serialized from a Java server.
|
|
10703
|
+
* You should avoid comparisons like {@code val === true/false} in those cases.
|
|
10704
|
+
* @return {boolean}
|
|
10705
|
+
*/
|
|
10706
|
+
proto.sniiptransactionapi.PostPayBillResponse.prototype.getShowemailverificationmsg = function() {
|
|
10707
|
+
return /** @type {boolean} */ (jspb.Message.getFieldWithDefault(this, 5, false));
|
|
10708
|
+
};
|
|
10709
|
+
|
|
10710
|
+
|
|
10711
|
+
/** @param {boolean} value */
|
|
10712
|
+
proto.sniiptransactionapi.PostPayBillResponse.prototype.setShowemailverificationmsg = function(value) {
|
|
10713
|
+
jspb.Message.setProto3BooleanField(this, 5, value);
|
|
10714
|
+
};
|
|
10715
|
+
|
|
10716
|
+
|
|
10688
10717
|
|
|
10689
10718
|
/**
|
|
10690
10719
|
* Generated by JsPbCodeGenerator.
|